diff --git a/.github/workflows/build_binaries.yml b/.github/workflows/build_binaries.yml index a3a421d0..79f70184 100644 --- a/.github/workflows/build_binaries.yml +++ b/.github/workflows/build_binaries.yml @@ -45,13 +45,13 @@ jobs: timeout-minutes: 60 steps: - name: Checkout repository - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - name: Install Rust toolchain uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: inherit-toolchain: true bins: cross - - uses: taiki-e/setup-cross-toolchain-action@84e58a47fc2bcd3821a2aa8c153595bbffb0e10f + - uses: taiki-e/setup-cross-toolchain-action@b8d1a322a6009a2b7220f53996695778eef89b41 with: target: ${{ matrix.target }} if: startsWith(matrix.os, 'ubuntu') && !contains(matrix.target, '-musl') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index f74c30ce..b77dba8a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -8,7 +8,7 @@ jobs: name: cargo deny --all-features check runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: inherit-toolchain: true diff --git a/.github/workflows/presubmit.yml b/.github/workflows/presubmit.yml index cee3c052..46a69068 100644 --- a/.github/workflows/presubmit.yml +++ b/.github/workflows/presubmit.yml @@ -10,7 +10,7 @@ jobs: os: [ubuntu-22.04, macos-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: inherit-toolchain: true @@ -23,7 +23,7 @@ jobs: - run: SHPOOL_LEAVE_TEST_LOGS=true RUST_BACKTRACE=full cargo test --all-features - name: Archive Logs if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 id: artifact-upload-step with: name: test-logs-${{ matrix.os }} @@ -36,7 +36,7 @@ jobs: # name: cargo +nightly miri test # runs-on: ubuntu-22.04 # steps: - # - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + # - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # - uses: moonrepo/setup-rust@b8edcc56aab474d90c7cf0bb8beeaf8334c15e9f # with: # components: miri @@ -48,7 +48,7 @@ jobs: name: cargo +nightly fmt -- --check runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: components: rustfmt @@ -60,7 +60,7 @@ jobs: name: cargo +nightly cranky --all-targets -- -D warnings runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: components: clippy @@ -73,7 +73,7 @@ jobs: name: cargo deny --all-features check licenses runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - name: Install Rust toolchain uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1d5ac070..0d5a8956 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,7 +23,7 @@ jobs: app-id: ${{ secrets.RELEASE_PLZ_APP_ID }} # <-- GitHub App ID secret name private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }} # <-- GitHub App private key secret name - name: Checkout repository - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: fetch-depth: 0 - name: Install Rust toolchain @@ -31,7 +31,7 @@ jobs: with: bins: cross - name: Run release-plz - uses: MarcoIeni/release-plz-action@487eb7b5c085a664d5c5ca05f4159bd9b591182a + uses: MarcoIeni/release-plz-action@20b23932963f7971bdff386c3542f07fbec45f42 env: GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}