File tree Expand file tree Collapse file tree 5 files changed +12
-11
lines changed
Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 build :
11- name : build-${{ matrix.deno-version == 'nightly ' && 'nightly ' || 'release' }}-${{ matrix.unstable && 'unstable' || 'stable' }}-${{ matrix.no-check && 'nocheck' || 'tsc' }}
11+ name : build-${{ matrix.deno-version == 'canary ' && 'canary ' || 'release' }}-${{ matrix.unstable && 'unstable' || 'stable' }}-${{ matrix.no-check && 'nocheck' || 'tsc' }}
1212 runs-on : ubuntu-latest
1313 strategy :
1414 matrix :
15- deno-version : [v1.x, nightly ]
15+ deno-version : [v1.x, canary ]
1616 unstable : [false, true]
1717 no-check : [false, true]
1818 env :
1919 AWS_ACCESS_KEY_ID : AKIAIOSFODNN7EXAMPLE
2020 AWS_SECRET_ACCESS_KEY : wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
2121 steps :
22- - name : Setup Deno environment
23- uses : denolib /setup-deno@v2.3.0
22+ - name : Setup Deno
23+ uses : denoland /setup-deno@main
2424 with :
2525 deno-version : ${{ matrix.deno-version }}
2626
Original file line number Diff line number Diff line change 11{
2- "deno.enable" : true
3- }
2+ "deno.enable" : true ,
3+ "deno.lint" : true
4+ }
Original file line number Diff line number Diff line change 11# deno_sqs
22
3- [ ![ deno doc] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/sqs/mod.ts )
3+ [ ![ deno doc] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/sqs@0.3.6 /mod.ts )
44
55Amazon SQS for Deno
66
@@ -9,7 +9,7 @@ Amazon SQS for Deno
99## Examples
1010
1111``` ts
12- import { SQSQueue } from " https://deno.land/x/sqs@0.3.5 /mod.ts" ;
12+ import { SQSQueue } from " https://deno.land/x/sqs@0.3.6 /mod.ts" ;
1313
1414// Create a queue using the queue url and credentials
1515const queue = new SQSQueue ({
Original file line number Diff line number Diff line change 1- export { AWSSignerV4 } from "https://deno.land/x/aws_sign_v4@1.0.0 /mod.ts" ;
2- import { createHash } from "https://deno.land/std@0.84 .0/hash/mod.ts" ;
1+ export { AWSSignerV4 } from "https://deno.land/x/aws_sign_v4@1.0.1 /mod.ts" ;
2+ import { createHash } from "https://deno.land/std@0.95 .0/hash/mod.ts" ;
33export function sha256Hex ( data : string | Uint8Array ) : string {
44 const hasher = createHash ( "sha256" ) ;
55 hasher . update ( data ) ;
Original file line number Diff line number Diff line change 11export {
22 assert ,
33 assertEquals ,
4- } from "https://deno.land/std@0.84 .0/testing/asserts.ts" ;
4+ } from "https://deno.land/std@0.95 .0/testing/asserts.ts" ;
You can’t perform that action at this time.
0 commit comments