diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 52f1f2c4a14e..9568de947a5e 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -20,7 +20,7 @@ jobs: - if: ${{ matrix.platform == 'ubuntu-latest' }} name: Free Disk Space (Ubuntu) uses: jlumbroso/free-disk-space@main - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: Swatinem/rust-cache@v2 - if: ${{ runner.os == 'Windows' }} uses: ilammy/setup-nasm@v1 diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 8a02be915f21..60ea88584f1b 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -15,7 +15,7 @@ jobs: - sslocal steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to GitHub Container Registry diff --git a/.github/workflows/build-msrv.yml b/.github/workflows/build-msrv.yml index 13eb1d30484f..928d6942520f 100644 --- a/.github/workflows/build-msrv.yml +++ b/.github/workflows/build-msrv.yml @@ -23,7 +23,7 @@ jobs: - if: ${{ matrix.platform == 'ubuntu-latest' }} name: Install LLVM and Clang run: sudo apt update && sudo apt install -y clang - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: Swatinem/rust-cache@v2 - if: ${{ runner.os == 'Windows' }} uses: ilammy/setup-nasm@v1 @@ -56,7 +56,7 @@ jobs: - if: ${{ matrix.platform == 'ubuntu-latest' }} name: Install LLVM and Clang run: sudo apt update && sudo apt install -y clang - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: Swatinem/rust-cache@v2 - if: ${{ runner.os == 'Windows' }} uses: ilammy/setup-nasm@v1 @@ -85,7 +85,7 @@ jobs: - if: ${{ matrix.platform == 'ubuntu-latest' }} name: Install LLVM and Clang run: sudo apt update && sudo apt install -y clang - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: Swatinem/rust-cache@v2 - if: ${{ runner.os == 'Windows' }} uses: ilammy/setup-nasm@v1 diff --git a/.github/workflows/build-nightly-release.yml b/.github/workflows/build-nightly-release.yml index c6e2cbdb7181..867c933b604f 100644 --- a/.github/workflows/build-nightly-release.yml +++ b/.github/workflows/build-nightly-release.yml @@ -60,7 +60,7 @@ jobs: - name: Install LLVM and Clang run: sudo apt update && sudo apt install -y clang - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Rust run: | @@ -115,7 +115,7 @@ jobs: - x86_64-apple-darwin - aarch64-apple-darwin steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install GNU tar if: runner.os == 'macOS' @@ -149,7 +149,7 @@ jobs: RUSTFLAGS: "-C target-feature=+crt-static" RUST_BACKTRACE: full steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ilammy/setup-nasm@v1 - name: Install Rust diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 01130015989a..a7d8d951289e 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -94,7 +94,7 @@ jobs: - name: Install LLVM and Clang run: sudo apt update && sudo apt install -y clang - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Rust run: | @@ -153,7 +153,7 @@ jobs: - x86_64-apple-darwin - aarch64-apple-darwin steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install GNU tar if: runner.os == 'macOS' @@ -190,7 +190,7 @@ jobs: RUSTFLAGS: "-C target-feature=+crt-static" RUST_BACKTRACE: full steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ilammy/setup-nasm@v1 - name: Install Rust diff --git a/.github/workflows/clippy-check.yml b/.github/workflows/clippy-check.yml index 4ae180ecc919..70be3b1507ed 100644 --- a/.github/workflows/clippy-check.yml +++ b/.github/workflows/clippy-check.yml @@ -17,7 +17,7 @@ jobs: runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: Swatinem/rust-cache@v2 - if: ${{ runner.os == 'Windows' }} uses: ilammy/setup-nasm@v1 diff --git a/.github/workflows/deny-check.yml b/.github/workflows/deny-check.yml index ece405af39d7..630e79c6e5be 100644 --- a/.github/workflows/deny-check.yml +++ b/.github/workflows/deny-check.yml @@ -13,7 +13,7 @@ jobs: continue-on-error: ${{ matrix.checks == 'advisories' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: EmbarkStudios/cargo-deny-action@v2 with: command: check ${{ matrix.checks }}