Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 1 to 4 in /.github/workflows
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v1...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Nov 21, 2023
1 parent aad9568 commit 8488892
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-build", target: "x86_64-unknown-linux-gnu" }
- { name: "cargo-apk", target: "x86_64-unknown-linux-gnu" }
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Publish ${{ matrix.crate.name }}
continue-on-error: true
run: cargo publish --manifest-path ${{ matrix.crate.name }}/Cargo.toml --target ${{ matrix.crate.target }} --token ${{ secrets.cratesio_token }}
14 changes: 7 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ 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
- name: Install aarch64-linux-android Rust target
run: rustup target add aarch64-linux-android
- name: Clippy
Expand All @@ -27,7 +27,7 @@ jobs:
name: Check MSRV (1.64.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.64.0
with:
target: aarch64-linux-android
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
name: Build apk

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

- name: Installing Rust ${{ matrix.rust-channel }} w/ ${{ matrix.rust-target }}
run: |
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:

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

- uses: actions/download-artifact@v2
name: Download hello_world APK
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
name: Host-side tests

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

- name: Installing Rust ${{ matrix.rust-channel }}
run: |
Expand All @@ -190,7 +190,7 @@ jobs:
name: Build-test docs

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

- name: Installing Rust ${{ matrix.rust-channel }}
run: |
Expand Down

0 comments on commit 8488892

Please sign in to comment.