Skip to content

Commit

Permalink
Bump actions/checkout to v4
Browse files Browse the repository at this point in the history
Getting a bunch of deprecation warnings on the _ancient_ (almost 4 years
old) `v1` release.
  • Loading branch information
MarijnS95 committed Oct 23, 2023
1 parent ef534df commit 030abc8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- { name: "ndk-sys", target: "armv7-linux-androideabi" }
- { name: "ndk", target: "armv7-linux-androideabi" }
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.crate.target }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Format
run: cargo fmt --all -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -28,7 +28,7 @@ jobs:
name: Check ndk-sys MSRV (1.60.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- uses: dtolnay/[email protected]
with:
Expand All @@ -44,7 +44,7 @@ jobs:
name: Check overall MSRV (1.66.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@nightly
if: ${{ matrix.minimal-versions }}
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
name: Cross-compile

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

- name: Setup Android SDK
uses: android-actions/setup-android@v2
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
name: Host-side tests

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

- name: Installing Rust ${{ matrix.rust-channel }}
uses: dtolnay/rust-toolchain@master
Expand All @@ -138,7 +138,7 @@ jobs:
name: Build-test docs

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

- name: Installing Rust ${{ matrix.rust-channel }}
uses: dtolnay/rust-toolchain@master
Expand Down

0 comments on commit 030abc8

Please sign in to comment.