diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 9568de947a5e..1bc0db580075 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@v5 + - uses: actions/checkout@v6 - 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 60ea88584f1b..3d5f9939e834 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@v5 + uses: actions/checkout@v6 - 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 928d6942520f..a508dbc80fd4 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@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - 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 c9ed908ce4a3..1bee2ede0c62 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@v5 + - uses: actions/checkout@v6 - name: Install Rust run: | @@ -115,7 +115,7 @@ jobs: - x86_64-apple-darwin - aarch64-apple-darwin steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - uses: ilammy/setup-nasm@v1 - name: Install Rust diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index a7d8d951289e..d267662a6e9b 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@v5 + - uses: actions/checkout@v6 - name: Install Rust run: | @@ -153,7 +153,7 @@ jobs: - x86_64-apple-darwin - aarch64-apple-darwin steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - uses: ilammy/setup-nasm@v1 - name: Install Rust diff --git a/.github/workflows/clippy-check.yml b/.github/workflows/clippy-check.yml index 70be3b1507ed..c24aa44b8b75 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@v5 + - uses: actions/checkout@v6 - 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 630e79c6e5be..d702dc10251e 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@v5 + - uses: actions/checkout@v6 - uses: EmbarkStudios/cargo-deny-action@v2 with: command: check ${{ matrix.checks }}