Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 #5

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/cache@v3
id: cache
with:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ setup ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get deps from cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ setup ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get deps from cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
runs-on: macos-latest
needs: [ setup ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get deps from cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
runs-on: windows-latest
needs: [ setup ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get deps from cache
uses: actions/cache@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install nightly
run: rustup toolchain install nightly --allow-downgrade -c rustfmt
- name: Rustfmt Check
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check spelling
uses: crate-ci/typos@master
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
prerelease: ${{ steps.regex-tag.outputs.match == '' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: KyoriPowered/action-regex-match@v3
id: regex-tag
with:
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ release, check-fmt, clippy, cross, apple-darwin, pc-windows-msvc ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get deps from cache
uses: actions/cache@v3
with:
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ release, check-fmt, clippy, cross, apple-darwin, pc-windows-msvc ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- name: Merge hashes
shell: bash
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
CARGO_TERM_COLOR: never
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install nightly
run: rustup toolchain install nightly --allow-downgrade -c rustfmt
- name: Rustfmt Check
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
runs-on: ${{ matrix.os }}
needs: [ setup ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Change file endings in Cargo.lock
if: ${{ contains( matrix.os, 'windows' ) }}
shell: pwsh
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
runs-on: ${{ matrix.os }}
needs: [ setup ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Change file endings in Cargo.lock
if: ${{ contains( matrix.os, 'windows' ) }}
shell: pwsh
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
runs-on: ${{ matrix.os }}
needs: [ setup ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Change file endings in Cargo.lock
if: ${{ contains( matrix.os, 'windows' ) }}
shell: pwsh
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/cache@v3
id: cache
with:
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ setup ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/cache@v3
id: cache
with:
Expand Down Expand Up @@ -418,7 +418,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ setup, check-fmt, clippy, cargo-hack, cargo-msrv ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get deps from cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -465,7 +465,7 @@ jobs:
runs-on: macos-latest
needs: [ setup, check-fmt, clippy, cargo-hack, cargo-msrv ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get deps from cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -514,7 +514,7 @@ jobs:
runs-on: windows-latest
needs: [ setup, check-fmt, clippy, cargo-hack, cargo-msrv ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get deps from cache
uses: actions/cache@v3
with:
Expand Down
Loading