Skip to content

Commit

Permalink
ci: Consistently use actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored and pvdrz committed Jul 2, 2024
1 parent 9d5991b commit 35f09bd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/bindgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install stable
uses: actions-rs/toolchain@v1
Expand All @@ -43,7 +43,7 @@ jobs:
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install msrv for lib
uses: dtolnay/rust-toolchain@master
Expand All @@ -70,7 +70,7 @@ jobs:
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install stable
uses: actions-rs/toolchain@v1
Expand All @@ -87,7 +87,7 @@ jobs:
env:
RUSTDOCFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install stable
uses: actions-rs/toolchain@v1
Expand All @@ -105,7 +105,7 @@ jobs:
quickchecking:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install stable
uses: actions-rs/toolchain@v1
Expand All @@ -124,7 +124,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-12]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install stable
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
no_default_features: 0
feature_extra_asserts: 0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install multiarch packages
if: matrix.target.debian
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install nightly
uses: actions-rs/toolchain@v1
Expand All @@ -249,7 +249,7 @@ jobs:
test-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# NOTE(emilio): Change deploy-book as well if you change this.
- name: Test book
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false

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:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
Expand Down

0 comments on commit 35f09bd

Please sign in to comment.