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

build(deps): bump actions/checkout from 1 to 4 in /.github/workflows #41

Merged
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
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.70.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.70.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
Loading