Skip to content

Commit 0f64bf4

Browse files
authored
chore: update deps (#5)
1 parent cff24a7 commit 0f64bf4

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
deno-version: [v1.4.0, nightly]
15+
deno-version: [v1.4.2, nightly]
1616
unstable: [false, true]
17-
no-check: [false, true]
17+
# FIXME(lucacasonato): temporarially disable no-check testing (see https://github.com/denoland/deno/issues/7709)
18+
no-check: [false]
1819
env:
1920
AWS_ACCESS_KEY_ID: AKIAIOSFODNN7EXAMPLE
2021
AWS_SECRET_ACCESS_KEY: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Amazon SQS for Deno
99
## Examples
1010

1111
```ts
12-
import { SQSQueue } from "https://deno.land/x/sqs@0.3.3/mod.ts";
12+
import { SQSQueue } from "https://deno.land/x/sqs@0.3.4/mod.ts";
1313

1414
// Create a queue using the queue url and credentials
1515
const queue = new SQSQueue({

deps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export { AWSSignerV4 } from "https://deno.land/x/aws_sign_v4@0.1.1/mod.ts";
2-
import { createHash } from "https://deno.land/std@0.69.0/hash/mod.ts";
1+
export { AWSSignerV4 } from "https://deno.land/x/aws_sign_v4@0.1.2/mod.ts";
2+
import { createHash } from "https://deno.land/std@0.71.0/hash/mod.ts";
33
export function sha256Hex(data: string | Uint8Array): string {
44
const hasher = createHash("sha256");
55
hasher.update(data);

test_deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export {
22
assert,
33
assertEquals,
4-
} from "https://deno.land/std@0.69.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.71.0/testing/asserts.ts";

0 commit comments

Comments
 (0)