Skip to content

Commit

Permalink
Update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 6, 2023
1 parent 8fdc86a commit 20289c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
toolchain: ${{ steps.get_toolchain.outputs.TOOLCHAIN }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --tags
Expand All @@ -39,7 +39,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: check
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
needs: [get-version]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install toolchains
run: |
rustup toolchain install ${{ needs.get-version.outputs.toolchain }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
toolchain: ${{ steps.get_toolchain.outputs.TOOLCHAIN }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --tags
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
bindgenExtraClangArgs: "--sysroot=/usr/aarch64-linux-gnu -mfloat-abi=hard"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install toolchains
run: |
rustup toolchain install ${{ needs.get-version.outputs.toolchain }}
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
runs-on: ubuntu-latest
needs: [get-version, build-release]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup QEMU
uses: docker/setup-qemu-action@v2
with:
Expand Down

0 comments on commit 20289c6

Please sign in to comment.