Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4 (#1140)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored May 29, 2024
1 parent 7c96f47 commit 473c5c4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: windows-latest
name: "e2e/windows/debug"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.commit_hash }}
- name: Download artifact
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/installation_script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run installation script in Docker
run: |
docker run --rm -v $(pwd):$(pwd) -e "RUST_LOG=fnm=debug" --workdir $(pwd) ${{matrix.docker_image}} bash -c '
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
script_arguments: '--force-no-brew'
runs-on: ${{ matrix.setup.os }}-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: "sudo apt-get install -y ${{ matrix.shell }}"
name: Install ${{matrix.shell}} using apt-get
if: matrix.setup.os == 'ubuntu'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# set up
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: hecrj/setup-rust-action@v1
with:
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: cargo fmt
run: cargo fmt -- --check

Expand All @@ -32,7 +32,7 @@ jobs:
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: cargo clippy
run: cargo clippy -- -D warnings

Expand All @@ -46,7 +46,7 @@ jobs:
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run tests
run: cargo test

Expand All @@ -58,7 +58,7 @@ jobs:
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build release binary
run: cargo build --release
env:
Expand All @@ -76,7 +76,7 @@ jobs:
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build release binary
run: cargo build --release
env:
Expand All @@ -97,7 +97,7 @@ jobs:
steps:
- name: install necessary shells
run: brew install fish zsh bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: fnm-macos
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
needs: [build_release]
name: "e2e/windows"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: fnm-windows
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
steps:
- name: install necessary shells
run: sudo apt-get update && sudo apt-get install -y fish zsh bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: fnm-linux
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends musl-tools
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build release binary
run: cargo build --release --target x86_64-unknown-linux-musl
- name: Strip binary from debug symbols
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
key: arm-binary-${{ matrix.arch }}
- name: "Download `cross` crate"
run: cargo install cross
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Build release"
run: cross build --target $RUST_TARGET --release
- uses: uraimo/run-on-arch-action@v2.1.2
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:
steps:
- name: install necessary shells
run: sudo apt-get update && sudo apt-get install -y fish zsh bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: fnm-linux
Expand Down

0 comments on commit 473c5c4

Please sign in to comment.