diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index d56fcbbfc6..8d0c7bbd24 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -17,7 +17,7 @@ jobs: runs-on: windows-2019 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update nightly && rustup default nightly-x86_64-pc-windows-msvc - name: Install clippy diff --git a/.github/workflows/cross.yml b/.github/workflows/cross.yml index 22b335f8d3..b596d6b94f 100644 --- a/.github/workflows/cross.yml +++ b/.github/workflows/cross.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Add toolchain target run: rustup target add ${{ matrix.target }} @@ -57,7 +57,7 @@ jobs: - name: LLVM MinGW toolchain cache configuration id: cache-llvm-mingw-toolchain - uses: actions/cache@v3 + uses: actions/cache@v4 if: startsWith(matrix.image, 'ubuntu-') && contains(matrix.target, 'gnullvm') && matrix.version == 'nightly' with: path: ${{ env.LLVM-MINGW-TOOLCHAIN-NAME }} diff --git a/.github/workflows/debugger_visualizer.yml b/.github/workflows/debugger_visualizer.yml index 1de224b395..2dc1cf45d4 100644 --- a/.github/workflows/debugger_visualizer.yml +++ b/.github/workflows/debugger_visualizer.yml @@ -23,7 +23,7 @@ jobs: - target: i686-pc-windows-msvc steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update nightly && rustup default nightly-${{ matrix.target }} - name: Add toolchain target diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index bd4fc1ba41..3a630abaef 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -17,7 +17,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check run: cargo doc --no-deps -p windows @@ -26,6 +26,6 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check run: cargo doc --no-deps -p windows-sys diff --git a/.github/workflows/fmt.yml b/.github/workflows/fmt.yml index 46f1736dee..03b9983195 100644 --- a/.github/workflows/fmt.yml +++ b/.github/workflows/fmt.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update stable && rustup default stable - name: Check diff --git a/.github/workflows/gen.yml b/.github/workflows/gen.yml index 6acf89097d..ee9eaa7e1d 100644 --- a/.github/workflows/gen.yml +++ b/.github/workflows/gen.yml @@ -20,7 +20,7 @@ jobs: tool: [windows, sys, yml, license, core, metadata] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update stable && rustup default stable - name: Run diff --git a/.github/workflows/lib.yml b/.github/workflows/lib.yml index 7e9757d399..c81288c01b 100644 --- a/.github/workflows/lib.yml +++ b/.github/workflows/lib.yml @@ -17,7 +17,7 @@ jobs: runs-on: windows-2019 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Fix environment uses: ./.github/actions/fix-environment @@ -47,7 +47,7 @@ jobs: cargo run -p tool_msvc - name: Upload libs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: libs path: crates/targets/*/lib/* diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 333ced91eb..3f44d8be17 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update stable && rustup default stable - name: Run cargo build diff --git a/.github/workflows/raw_dylib.yml b/.github/workflows/raw_dylib.yml index d457a38d08..9782edd88a 100644 --- a/.github/workflows/raw_dylib.yml +++ b/.github/workflows/raw_dylib.yml @@ -25,7 +25,7 @@ jobs: - target: i686-pc-windows-gnu steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update nightly && rustup default nightly-${{ matrix.target }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7a50357e54..cd00568bc3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update ${{ matrix.version }} && rustup default ${{ matrix.version }}-${{ matrix.target }} - name: Add toolchain target diff --git a/.github/workflows/windows-bindgen.yml b/.github/workflows/windows-bindgen.yml index 969377a6b7..dc8b2e3c14 100644 --- a/.github/workflows/windows-bindgen.yml +++ b/.github/workflows/windows-bindgen.yml @@ -23,7 +23,7 @@ jobs: runs-on: ${{ matrix.runs-on }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - name: Check diff --git a/.github/workflows/windows-metadata.yml b/.github/workflows/windows-metadata.yml index 11aa74d040..97d6890228 100644 --- a/.github/workflows/windows-metadata.yml +++ b/.github/workflows/windows-metadata.yml @@ -23,7 +23,7 @@ jobs: runs-on: ${{ matrix.runs-on }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - name: Check diff --git a/.github/workflows/windows-sys.yml b/.github/workflows/windows-sys.yml index 3598e1fd8b..e254d8bd99 100644 --- a/.github/workflows/windows-sys.yml +++ b/.github/workflows/windows-sys.yml @@ -23,7 +23,7 @@ jobs: runs-on: ${{ matrix.runs-on }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - name: Check diff --git a/.github/workflows/windows-version.yml b/.github/workflows/windows-version.yml index 6cc98d97ab..8a660940de 100644 --- a/.github/workflows/windows-version.yml +++ b/.github/workflows/windows-version.yml @@ -23,7 +23,7 @@ jobs: runs-on: ${{ matrix.runs-on }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - name: Check diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index a9fbd074aa..d73361d3ce 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -23,7 +23,7 @@ jobs: runs-on: ${{ matrix.runs-on }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - name: Run cargo check diff --git a/crates/tools/yml/src/main.rs b/crates/tools/yml/src/main.rs index f5ff72bbfb..e2808ada72 100644 --- a/crates/tools/yml/src/main.rs +++ b/crates/tools/yml/src/main.rs @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update ${{ matrix.version }} && rustup default ${{ matrix.version }}-${{ matrix.target }} - name: Add toolchain target @@ -88,7 +88,7 @@ jobs: runs-on: windows-2019 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update toolchain run: rustup update --no-self-update nightly && rustup default nightly-x86_64-pc-windows-msvc - name: Install clippy