Skip to content

Commit

Permalink
Use repository variable for deno version
Browse files Browse the repository at this point in the history
  • Loading branch information
tai2 committed Nov 2, 2023
1 parent 2732b18 commit 99b3a98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: 1.37.2
deno-version: ${{ vars.DENO_VERSION }}
- name: Compile
run: |
# Linux
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
deno-version: [1.37.2]
deno-version: ["${{ vars.DENO_VERSION }}"]

steps:
- name: Git Checkout Deno Module
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/udd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: 1.37.2
deno-version: ${{ vars.DENO_VERSION }}
- name: Update dependencies
run: |
deno run -A https://deno.land/x/udd/main.ts src/deps/*.ts src/deps/std/*.ts
Expand Down

0 comments on commit 99b3a98

Please sign in to comment.