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

chore(deps): update actions/checkout action to v4 #1140

Merged
merged 1 commit into from
May 29, 2024
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/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/[email protected]
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
Loading