Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Commit

Permalink
bump to v2 (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
axetroy authored Jun 27, 2020
1 parent 91263d4 commit 918ad90
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Basic:

```yaml
steps:
- uses: actions/checkout@master
- uses: denolib/setup-deno@master
- uses: actions/checkout@v2
- uses: denolib/setup-deno@v2
with:
deno-version: v1.x
- run: deno run https://deno.land/std/examples/welcome.ts
Expand All @@ -31,12 +31,12 @@ jobs:
runs-on: ubuntu-16.04
strategy:
matrix:
deno: [1.0.0, 0.42.0]
deno: ["v1.0.0", "v0.42.0", "v1.x", "v0.x"]
name: Deno ${{ matrix.deno }} sample
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Setup Deno
uses: denolib/setup-deno@master
uses: denolib/setup-deno@v2
with:
deno-version: ${{ matrix.deno }}
- run: deno run https://deno.land/std/examples/welcome.ts
Expand Down

0 comments on commit 918ad90

Please sign in to comment.