Skip to content

Commit

Permalink
Update actions/checkout@v3 -> v4
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Sep 5, 2023
1 parent 70d348f commit 1a520aa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Enable symlinks (windows)
if: matrix.os == 'windows'
run: git config --global core.symlinks true
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
os: [ubuntu, macos, windows]
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rust-src
Expand All @@ -97,7 +97,7 @@ jobs:
if: github.event_name != 'pull_request'
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rust-src
Expand All @@ -117,7 +117,7 @@ jobs:
os: [ubuntu, macos, windows]
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install lld
run: sudo apt-get install lld
if: matrix.os == 'ubuntu'
Expand All @@ -134,7 +134,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: cargo generate-lockfile -Z minimal-versions
- run: cargo check --locked --workspace
Expand All @@ -145,7 +145,7 @@ jobs:
if: github.event_name != 'pull_request'
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rust-src
Expand All @@ -158,7 +158,7 @@ jobs:
if: github.event_name != 'pull_request'
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install clang-tidy
run: sudo apt-get install clang-tidy-11
- name: Run clang-tidy
Expand All @@ -170,6 +170,6 @@ jobs:
if: github.event_name != 'pull_request'
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/install@cargo-outdated
- run: cargo outdated --workspace --exit-code 1
2 changes: 1 addition & 1 deletion .github/workflows/site.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
contents: write
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/install@mdbook
- run: mdbook --version

Expand Down

0 comments on commit 1a520aa

Please sign in to comment.