Skip to content

Commit

Permalink
actions/checkout v3 -> v4
Browse files Browse the repository at this point in the history
  • Loading branch information
zkxs committed Sep 4, 2023
1 parent a0e9540 commit 35931a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' # only run for pushes to tags or master
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
with:
arguments: --workspace
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ${{ matrix.target.runs-on }}
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup workflow cache
uses: actions/cache@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
with:
arguments: --workspace
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ${{ matrix.target.runs-on }}
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup workflow cache
uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-latest
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup workflow cache
uses: actions/cache@v3
with:
Expand Down

0 comments on commit 35931a6

Please sign in to comment.