Skip to content

Commit

Permalink
Update actions/checkout in GitHub Actions workflows to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Feb 17, 2023
1 parent 4d9abd4 commit f90c967
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
lints:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand All @@ -31,7 +31,7 @@ jobs:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/cargo@v1
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -41,7 +41,7 @@ jobs:
wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand All @@ -52,7 +52,7 @@ jobs:
# needs: test
# steps:
# - name: Checkout
# uses: actions/checkout@v2.3.1
# uses: actions/checkout@v3
# - name: Build the book
# run: cd guide && mdbook build
# - name: Deploy
Expand All @@ -61,4 +61,4 @@ jobs:
# with:
# branch: master
# folder: guide/book
# token: ${{ secrets.GITHUB_TOKEN }}
# token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f90c967

Please sign in to comment.