diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2b9d46997ce56..ea723cc63ae03 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 10 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Rust toolchain run: ./ci/install-rust.sh && rustup component add rustfmt - name: Check style @@ -42,7 +42,7 @@ jobs: runs-on: ${{ matrix.os }} timeout-minutes: 10 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: rustup update stable --no-self-update - uses: Swatinem/rust-cache@v2 # Here we use the latest stable Rust toolchain already installed by GitHub @@ -71,7 +71,7 @@ jobs: env: TOOLCHAIN: ${{ matrix.toolchain }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Rust toolchain run: ./ci/install-rust.sh @@ -133,7 +133,7 @@ jobs: env: TARGET: ${{ matrix.target }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Rust toolchain run: ./ci/install-rust.sh - uses: Swatinem/rust-cache@v2 @@ -229,7 +229,7 @@ jobs: env: TARGET: ${{ matrix.target }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Rust toolchain run: ./ci/install-rust.sh - uses: Swatinem/rust-cache@v2 @@ -273,7 +273,7 @@ jobs: - target: x86_64-unknown-netbsd timeout-minutes: 25 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: test on Solaris uses: vmactions/solaris-vm@v1.1.6 if: contains(matrix.target, 'solaris') diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cf29e97f81543..741f11cab5016 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Install Rust (rustup)