Skip to content

Commit 251f155

Browse files
authored
Merge pull request #72 from hayd/deno-version-bump
Bump deno in CI to 1.20.2
2 parents 0261c7e + 6e485a2 commit 251f155

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v2
99
- uses: denoland/setup-deno@v1
1010
with:
11-
deno-version: 1.17.3
11+
deno-version: 1.20.2
1212
- name: Check format
1313
run: deno fmt --check
1414
- name: Run lint

.github/workflows/udd.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: denoland/setup-deno@v1
1414
with:
15-
deno-version: 1.17.3
15+
deno-version: 1.20.2
1616
- name: Update dependencies
1717
run: |
1818
deno run -A https://deno.land/x/udd/main.ts deps.ts
@@ -33,10 +33,10 @@ jobs:
3333
echo "::set-output name=sha::$(git rev-parse HEAD)"
3434
- name: Set commit status with pending
3535
uses: Sibz/github-status-action@v1
36-
with:
36+
with:
3737
authToken: ${{ secrets.GITHUB_TOKEN }}
38-
context: 'Basic tests'
39-
state: 'pending'
38+
context: "Basic tests"
39+
state: "pending"
4040
sha: ${{ steps.commit.outputs.sha }}
4141
- name: Basic tests
4242
id: test
@@ -45,9 +45,9 @@ jobs:
4545
deno test --allow-read --allow-write
4646
- name: Set commit status with outcome
4747
uses: Sibz/github-status-action@v1
48-
with:
48+
with:
4949
authToken: ${{ secrets.GITHUB_TOKEN }}
50-
context: 'Basic tests'
51-
description: 'To run other CI actions close/reopen this PR'
50+
context: "Basic tests"
51+
description: "To run other CI actions close/reopen this PR"
5252
state: ${{ steps.test.outcome }}
5353
sha: ${{ steps.commit.outputs.sha }}

0 commit comments

Comments
 (0)