Skip to content

Commit 8028abc

Browse files
authored
chore: update deps (#8)
1 parent efae5a1 commit 8028abc

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ on:
88

99
jobs:
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

.vscode/settings.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"deno.enable": true
3-
}
2+
"deno.enable": true,
3+
"deno.lint": true
4+
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
Amazon 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
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@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";
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.84.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.95.0/testing/asserts.ts";

0 commit comments

Comments
 (0)