Bump actions/checkout from 2 to 3 (#303)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2022-08-20 11:44:52 +00:00 committed by GitHub
parent 4b00f5f143
commit df3a8e21c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View file

@ -57,7 +57,7 @@ jobs:
name: ${{ matrix.target }} name: ${{ matrix.target }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Configure toolchain - name: Configure toolchain
run: | run: |

View file

@ -38,7 +38,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Download build - name: Download build
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3

View file

@ -16,7 +16,7 @@ jobs:
with: with:
tool: cargo-release tool: cargo-release
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
ref: main ref: main

View file

@ -17,7 +17,7 @@ jobs:
env: env:
COMMIT_MESSAGE: ${{ github.event.head_commit.message }} COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Extract tag from commit message - name: Extract tag from commit message
id: version id: version
run: .github/scripts/extract-tag-from-release-commit.sh run: .github/scripts/extract-tag-from-release-commit.sh
@ -32,7 +32,7 @@ jobs:
needs: info needs: info
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Push release tag - name: Push release tag
uses: mathieudutour/github-tag-action@v6.0 uses: mathieudutour/github-tag-action@v6.0
with: with:
@ -54,7 +54,7 @@ jobs:
name: Package and release name: Package and release
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Get outputs - name: Get outputs
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with: with:

View file

@ -24,7 +24,7 @@ jobs:
name: unit tests on ${{ matrix.os }} name: unit tests on ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Configure toolchain - name: Configure toolchain
run: | run: |
rustup toolchain install --profile minimal --no-self-update nightly rustup toolchain install --profile minimal --no-self-update nightly