diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b013e378..9e20fb9c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: identifiers: ${{ steps.filter.outputs.identifiers }} steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false @@ -142,7 +142,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 persist-credentials: false @@ -176,13 +176,13 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false - name: Cache Cargo registry and build artifacts - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: key: platform-all-features save-if: ${{ github.ref == 'refs/heads/main' }} @@ -200,20 +200,20 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 persist-credentials: false submodules: false - name: Cache Cargo registry and build artifacts - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: key: platform-coverage save-if: ${{ github.ref == 'refs/heads/main' }} - name: Install pinned coverage tool - uses: taiki-e/install-action@25435dc8dd3baed7417e0c96d3fe89013a5b2e09 # v2.81.3 + uses: taiki-e/install-action@6c6fd71fe4fb72c3697d269963d0e15df8adedad # v2.85.10 with: tool: cargo-llvm-cov@${{ env.CARGO_LLVM_COV_VERSION }} @@ -254,7 +254,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false @@ -285,7 +285,7 @@ jobs: - sqlite_statement steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false @@ -296,13 +296,13 @@ jobs: toolchain: nightly - name: Cache Cargo registry and build artifacts - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: key: platform-fuzz-${{ matrix.target }} save-if: ${{ github.ref == 'refs/heads/main' }} - name: Install pinned cargo-fuzz - uses: taiki-e/install-action@25435dc8dd3baed7417e0c96d3fe89013a5b2e09 # v2.81.3 + uses: taiki-e/install-action@6c6fd71fe4fb72c3697d269963d0e15df8adedad # v2.85.10 with: tool: cargo-fuzz@${{ env.CARGO_FUZZ_VERSION }} @@ -319,7 +319,7 @@ jobs: - name: Upload fuzz failures if: failure() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: platform-fuzz-${{ matrix.target }} path: products/platform/fuzz/artifacts/${{ matrix.target }}/ @@ -332,20 +332,20 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false save-if: ${{ github.ref == 'refs/heads/main' }} - name: Install cargo-deny - uses: taiki-e/install-action@25435dc8dd3baed7417e0c96d3fe89013a5b2e09 # v2.81.3 + uses: taiki-e/install-action@6c6fd71fe4fb72c3697d269963d0e15df8adedad # v2.85.10 with: tool: cargo-deny@0.19.8 @@ -380,13 +380,13 @@ jobs: CI_RUST_PACKAGES: ${{ needs.changes.outputs.rust_packages }} steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false @@ -418,13 +418,13 @@ jobs: CI_RUST_PACKAGES: ${{ toJSON(matrix.packages) }} steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false @@ -452,13 +452,13 @@ jobs: timeout-minutes: 15 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false @@ -496,21 +496,21 @@ jobs: timeout-minutes: 10 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 persist-credentials: false submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false save-if: ${{ github.ref == 'refs/heads/main' }} - name: Install just - uses: taiki-e/install-action@25435dc8dd3baed7417e0c96d3fe89013a5b2e09 # v2.81.3 + uses: taiki-e/install-action@6c6fd71fe4fb72c3697d269963d0e15df8adedad # v2.85.10 with: tool: just@1.51.0 @@ -550,13 +550,13 @@ jobs: timeout-minutes: 10 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false @@ -579,13 +579,13 @@ jobs: timeout-minutes: 10 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false @@ -605,13 +605,13 @@ jobs: timeout-minutes: 10 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false @@ -673,7 +673,7 @@ jobs: expected_uname: arm64 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false @@ -685,7 +685,7 @@ jobs: test "$(uname -m)" = "${{ matrix.expected_uname }}" - name: Cache Cargo registry and build artifacts - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: key: project-authoring-${{ matrix.arch }} save-if: ${{ github.ref == 'refs/heads/main' }} @@ -717,7 +717,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false @@ -779,7 +779,7 @@ jobs: run: python3 -m unittest release/scripts/test_check_release_relay_features.py - name: Set up Docker Buildx - uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 + uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c with: version: v0.33.0 driver-opts: image=moby/buildkit:v0.31.2@sha256:2f5adac4ecd194d9f8c10b7b5d7bceb5186853db1b26e5abd3a657af0b7e26ec @@ -839,7 +839,7 @@ jobs: - name: Install cosign for committed candidate evidence if: steps.candidate-assets.outputs.has_candidates == 'true' - uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3 + uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v4.1.2 - name: Install SLSA verifier for committed candidate evidence if: steps.candidate-assets.outputs.has_candidates == 'true' @@ -923,7 +923,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false @@ -969,7 +969,7 @@ jobs: timeout-minutes: 40 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false @@ -981,14 +981,14 @@ jobs: [[ "$(uname -m)" == "x86_64" ]] - name: Setup Node - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 with: node-version: 22.12.0 cache: npm cache-dependency-path: docs/site/package-lock.json - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false @@ -1064,13 +1064,13 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false - name: Setup Node - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 with: node-version: 22.12.0 cache: npm @@ -1150,13 +1150,13 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false - name: Setup Node - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 with: node-version: 22.12.0 cache: npm @@ -1183,13 +1183,13 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false - name: Setup Node - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 with: node-version: 22.12.0 cache: npm @@ -1222,13 +1222,13 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false - name: Setup Node - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 with: node-version: 22.12.0 cache: npm diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 256bb8d27..b2988a433 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -35,16 +35,16 @@ jobs: build-mode: none steps: - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4 - name: Initialize CodeQL - uses: github/codeql-action/init@dd903d2e4f5405488e5ef1422510ee31c8b32357 # v3 + uses: github/codeql-action/init@5595ccaf912efad79be6eef63a5619ff05969be3 # v3 with: languages: ${{ matrix.language }} build-mode: ${{ matrix.build-mode }} queries: security-and-quality - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@dd903d2e4f5405488e5ef1422510ee31c8b32357 # v3 + uses: github/codeql-action/analyze@5595ccaf912efad79be6eef63a5619ff05969be3 # v3 with: category: "/language:${{ matrix.language }}" diff --git a/.github/workflows/dco.yml b/.github/workflows/dco.yml index 972400e8f..2cf7ef4d5 100644 --- a/.github/workflows/dco.yml +++ b/.github/workflows/dco.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 diff --git a/.github/workflows/docs-pages.yml b/.github/workflows/docs-pages.yml index d4dc466b6..692204cd3 100644 --- a/.github/workflows/docs-pages.yml +++ b/.github/workflows/docs-pages.yml @@ -59,7 +59,7 @@ jobs: fi - name: Checkout protected main without persisted credentials - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ github.sha }} fetch-depth: 0 @@ -138,7 +138,7 @@ jobs: test "${checksum}" = "${DOCS_SHA256}" - name: Install cosign - uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3.10.1 + uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v3.10.1 - name: Verify tag-bound checksum signature env: @@ -156,7 +156,7 @@ jobs: "https://github.com/${GITHUB_REPOSITORY}/.github/workflows/release.yml@refs/heads/main" - name: Setup Node - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4.4.0 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v4.4.0 with: node-version: 22.12.0 cache: npm @@ -243,7 +243,7 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} steps: - name: Checkout deployment helpers from protected main - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ github.sha }} sparse-checkout: | diff --git a/.github/workflows/evidence-dev.yml b/.github/workflows/evidence-dev.yml index 046ce33bc..db4ddfe23 100644 --- a/.github/workflows/evidence-dev.yml +++ b/.github/workflows/evidence-dev.yml @@ -30,7 +30,7 @@ jobs: node_version: ${{ steps.identity.outputs.node_version }} steps: - name: Checkout exact workflow source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ github.sha }} fetch-depth: 0 @@ -147,7 +147,7 @@ jobs: asset: macos-arm64 steps: - name: Checkout exact development source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.validate.outputs.source_sha }} fetch-depth: 1 @@ -155,7 +155,7 @@ jobs: submodules: false - name: Restore Evidence development Cargo cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v4.2.3 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v4.2.3 with: path: | ~/.cargo/registry @@ -188,7 +188,7 @@ jobs: done - name: Upload native Evidence development binaries - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: evidence-dev-${{ matrix.asset }}-${{ github.run_id }}-${{ github.run_attempt }} path: development-platform @@ -229,7 +229,7 @@ jobs: napi_platform: darwin-arm64 steps: - name: Checkout exact development source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.validate.outputs.source_sha }} fetch-depth: 1 @@ -237,14 +237,14 @@ jobs: submodules: false - name: Setup Node - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4.4.0 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v4.4.0 with: node-version: 22.12.0 cache: npm cache-dependency-path: crates/registry-evidence-client-node/package-lock.json - name: Restore Evidence development client Cargo cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v4.2.3 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v4.2.3 with: path: | ~/.cargo/registry @@ -482,7 +482,7 @@ jobs: node smoke.js - name: Upload Evidence development client packages - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: evidence-dev-clients-${{ matrix.asset }}-${{ github.run_id }}-${{ github.run_attempt }} path: development-clients @@ -502,7 +502,7 @@ jobs: contents: read steps: - name: Checkout exact development source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.validate.outputs.source_sha }} fetch-depth: 1 @@ -510,7 +510,7 @@ jobs: submodules: false - name: Download exact native binaries and client packages - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: pattern: evidence-dev-*-${{ github.run_id }}-${{ github.run_attempt }} path: development-inputs @@ -577,7 +577,7 @@ jobs: done - name: Upload exact Evidence development assets - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: evidence-dev-assets-${{ github.run_id }}-${{ github.run_attempt }} path: development-assets @@ -596,7 +596,7 @@ jobs: contents: write steps: - name: Download exact assembled development assets - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: evidence-dev-assets-${{ github.run_id }}-${{ github.run_attempt }} path: development-assets diff --git a/.github/workflows/nightly-rust-coverage.yml b/.github/workflows/nightly-rust-coverage.yml index b1317291e..f78a1a44a 100644 --- a/.github/workflows/nightly-rust-coverage.yml +++ b/.github/workflows/nightly-rust-coverage.yml @@ -27,7 +27,7 @@ jobs: matrix: ${{ steps.matrix.outputs.matrix }} steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false @@ -94,21 +94,21 @@ jobs: COVERAGE_PACKAGES: ${{ matrix.packages }} steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 persist-credentials: false submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false save-if: false - name: Install pinned coverage tool - uses: taiki-e/install-action@25435dc8dd3baed7417e0c96d3fe89013a5b2e09 # v2.81.3 + uses: taiki-e/install-action@6c6fd71fe4fb72c3697d269963d0e15df8adedad # v2.85.10 with: tool: cargo-llvm-cov@${{ env.CARGO_LLVM_COV_VERSION }} @@ -156,7 +156,7 @@ jobs: --output-path "${coverage_dir}/${{ matrix.name }}.lcov" - name: Upload shard coverage artifact - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: nightly-rust-${{ matrix.name }}-coverage path: target/nightly-rust-coverage/coverage/${{ matrix.name }}.lcov @@ -211,21 +211,21 @@ jobs: CARGO_TARGET_DIR: target/nightly-relay-postgres-coverage steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 persist-credentials: false submodules: false - name: Cache Cargo registry - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: shared-key: workspace-registry cache-targets: false save-if: false - name: Install pinned coverage tool - uses: taiki-e/install-action@25435dc8dd3baed7417e0c96d3fe89013a5b2e09 # v2.81.3 + uses: taiki-e/install-action@6c6fd71fe4fb72c3697d269963d0e15df8adedad # v2.85.10 with: tool: cargo-llvm-cov@${{ env.CARGO_LLVM_COV_VERSION }} @@ -254,7 +254,7 @@ jobs: --output-path "${coverage_dir}/relay-postgresql-${{ matrix.postgresql }}.lcov" - name: Upload Relay PostgreSQL coverage artifact - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: nightly-relay-postgresql-${{ matrix.postgresql }}-coverage path: target/nightly-relay-postgres-coverage/coverage/relay-postgresql-${{ matrix.postgresql }}.lcov diff --git a/.github/workflows/nightly-security.yml b/.github/workflows/nightly-security.yml index 491ed049f..00051ab33 100644 --- a/.github/workflows/nightly-security.yml +++ b/.github/workflows/nightly-security.yml @@ -21,14 +21,14 @@ jobs: head_sha: ${{ steps.classify.outputs.head_sha }} steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 persist-credentials: false submodules: false - name: Restore last successful nightly state - uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: .nightly-security-state key: nightly-security-state-${{ github.run_id }}-${{ github.run_attempt }} @@ -112,7 +112,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false @@ -167,7 +167,7 @@ jobs: timeout-minutes: 60 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false @@ -178,10 +178,10 @@ jobs: toolchain: nightly - name: Cache Cargo registry and build artifacts - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 - name: Install cargo-fuzz - uses: taiki-e/install-action@25435dc8dd3baed7417e0c96d3fe89013a5b2e09 # v2.81.3 + uses: taiki-e/install-action@6c6fd71fe4fb72c3697d269963d0e15df8adedad # v2.85.10 with: tool: cargo-fuzz@${{ env.CARGO_FUZZ_VERSION }} @@ -204,7 +204,7 @@ jobs: - name: Upload platform fuzz artifacts if: failure() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: nightly-platform-fuzz-artifacts path: products/platform/fuzz/artifacts @@ -218,7 +218,7 @@ jobs: timeout-minutes: 45 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: persist-credentials: false submodules: false @@ -229,10 +229,10 @@ jobs: toolchain: nightly - name: Cache Cargo registry and build artifacts - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 - name: Install cargo-fuzz - uses: taiki-e/install-action@25435dc8dd3baed7417e0c96d3fe89013a5b2e09 # v2.81.3 + uses: taiki-e/install-action@6c6fd71fe4fb72c3697d269963d0e15df8adedad # v2.85.10 with: tool: cargo-fuzz@${{ env.CARGO_FUZZ_VERSION }} @@ -254,7 +254,7 @@ jobs: - name: Upload manifest fuzz artifacts if: failure() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: nightly-manifest-fuzz-artifacts path: products/manifest/fuzz/artifacts @@ -276,7 +276,7 @@ jobs: printf '%s\n' "${{ needs.changes.outputs.head_sha }}" > .nightly-security-state/last-success-sha - name: Save last successful nightly state - uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: .nightly-security-state key: nightly-security-state-${{ github.run_id }}-${{ github.run_attempt }} diff --git a/.github/workflows/relay-postgres-conformance.yml b/.github/workflows/relay-postgres-conformance.yml index 2f93a2b79..53a5b1fe3 100644 --- a/.github/workflows/relay-postgres-conformance.yml +++ b/.github/workflows/relay-postgres-conformance.yml @@ -61,13 +61,13 @@ jobs: --health-retries 12 steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false - name: Cache Cargo registry and build artifacts - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + uses: Swatinem/rust-cache@a45951ff880207c249adf57334cf2e9bd81d6e1e # v2 with: key: relay-postgresql-${{ matrix.postgresql }} save-if: ${{ github.ref == 'refs/heads/main' }} diff --git a/.github/workflows/release-canary.yml b/.github/workflows/release-canary.yml index e8a27fb6f..cac635826 100644 --- a/.github/workflows/release-canary.yml +++ b/.github/workflows/release-canary.yml @@ -22,7 +22,7 @@ jobs: id-token: write steps: - name: Checkout exact workflow revision - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ github.sha }} fetch-depth: 0 @@ -294,7 +294,7 @@ jobs: test -s canary/provenance-subjects.sha256 - name: Upload canary candidate - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: release-canary-${{ github.run_id }}-${{ github.run_attempt }} path: | @@ -304,14 +304,14 @@ jobs: retention-days: 1 - name: Attest canary only after all local checks pass - uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0 + uses: actions/attest-build-provenance@4d101475d8b20a2381f78447822ac1eab6504dd8 # v4.2.2 with: subject-path: | canary/release-candidate-manifest.json canary/registry-stack-v1.2.3-candidate.tar.gz - name: Download and authenticate canary candidate - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: release-canary-${{ github.run_id }}-${{ github.run_attempt }} path: canary/downloaded @@ -343,7 +343,7 @@ jobs: contents: read steps: - name: Checkout exact workflow revision - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ github.sha }} fetch-depth: 1 diff --git a/.github/workflows/release-candidate-cleanup.yml b/.github/workflows/release-candidate-cleanup.yml index 5e6c1539a..f80515ab3 100644 --- a/.github/workflows/release-candidate-cleanup.yml +++ b/.github/workflows/release-candidate-cleanup.yml @@ -29,7 +29,7 @@ jobs: REQUESTED_APPLY: ${{ github.event.client_payload.apply }} steps: - name: Checkout protected cleanup tooling - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ github.sha }} persist-credentials: false @@ -71,7 +71,7 @@ jobs: - name: Upload cleanup receipt if: ${{ always() }} - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: release-candidate-cleanup-${{ github.run_id }}-${{ github.run_attempt }} path: ${{ runner.temp }}/release-candidate-cleanup.json diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index be1ce6909..eef89fb35 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -45,7 +45,7 @@ jobs: manifest: ${{ steps.request.outputs.manifest }} steps: - name: Checkout protected workflow revision - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ github.sha }} fetch-depth: 0 @@ -230,7 +230,7 @@ jobs: contents: read steps: - name: Checkout exact candidate source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.validate.outputs.source_sha }} fetch-depth: 1 @@ -238,7 +238,7 @@ jobs: submodules: false - name: Restore reusable Cargo cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v4.2.3 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v4.2.3 with: path: | .cargo-home/registry @@ -260,7 +260,7 @@ jobs: - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v3.11.1 + uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v3.11.1 with: version: ${{ env.RELEASE_BUILDX_VERSION }} driver-opts: image=${{ env.RELEASE_BUILDKIT_IMAGE }} @@ -293,7 +293,7 @@ jobs: done - name: Setup Node for exact release docs archive - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4.4.0 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v4.4.0 with: node-version: 22.12.0 cache: npm @@ -326,7 +326,7 @@ jobs: candidate-canonical/ - name: Upload canonical build products - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: candidate-canonical-${{ github.run_id }}-${{ github.run_attempt }} path: candidate-canonical @@ -352,7 +352,7 @@ jobs: asset: linux-arm64 steps: - name: Checkout exact candidate source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.validate.outputs.source_sha }} fetch-depth: 1 @@ -387,7 +387,7 @@ jobs: mv platform candidate-platform/platform - name: Upload native platform payload - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: candidate-${{ matrix.asset }}-${{ github.run_id }}-${{ github.run_attempt }} path: candidate-platform @@ -423,7 +423,7 @@ jobs: napi_platform: darwin-arm64 steps: - name: Checkout exact candidate source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.validate.outputs.source_sha }} fetch-depth: 1 @@ -431,7 +431,7 @@ jobs: submodules: false - name: Setup Node - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4.4.0 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v4.4.0 with: node-version: 22.12.0 cache: npm @@ -440,7 +440,7 @@ jobs: crates/registry-relay-client-node/package-lock.json - name: Restore native client Cargo cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v4.2.3 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v4.2.3 with: path: | ~/.cargo/registry @@ -553,7 +553,7 @@ jobs: done - name: Upload native client packages - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: candidate-clients-${{ matrix.asset }}-${{ github.run_id }}-${{ github.run_attempt }} path: candidate-client-package @@ -575,7 +575,7 @@ jobs: packages: write steps: - name: Checkout exact candidate source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.validate.outputs.source_sha }} fetch-depth: 1 @@ -583,7 +583,7 @@ jobs: submodules: false - name: Download exact build products - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: pattern: candidate-*-${{ github.run_id }}-${{ github.run_attempt }} path: inputs @@ -1068,7 +1068,7 @@ jobs: --output candidate/release-candidate-manifest.json - name: Upload one candidate manifest and bundle - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: registry-stack-release-candidate-${{ github.run_id }}-${{ github.run_attempt }} path: | @@ -1091,7 +1091,7 @@ jobs: id-token: write steps: - name: Checkout exact candidate verifier - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.validate.outputs.workflow_revision }} fetch-depth: 1 @@ -1099,7 +1099,7 @@ jobs: submodules: false - name: Download compact candidate - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: registry-stack-release-candidate-${{ github.run_id }}-${{ github.run_attempt }} path: candidate @@ -1131,7 +1131,7 @@ jobs: --allow-current-run-in-progress - name: Attest manifest and bundle after re-verification - uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0 + uses: actions/attest-build-provenance@4d101475d8b20a2381f78447822ac1eab6504dd8 # v4.2.2 with: subject-path: | candidate/release-candidate-manifest.json diff --git a/.github/workflows/release-repeatability.yml b/.github/workflows/release-repeatability.yml index 93c2ebf7b..cbe9668e1 100644 --- a/.github/workflows/release-repeatability.yml +++ b/.github/workflows/release-repeatability.yml @@ -33,7 +33,7 @@ jobs: contents: read steps: - name: Checkout protected repeatability tooling - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ github.sha }} path: verifier @@ -71,7 +71,7 @@ jobs: } >> "${GITHUB_OUTPUT}" - name: Checkout exact release source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ steps.release.outputs.tag }} path: source @@ -206,7 +206,7 @@ jobs: - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v3.11.1 + uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v3.11.1 with: version: ${{ env.RELEASE_BUILDX_VERSION }} driver-opts: image=${{ env.RELEASE_BUILDKIT_IMAGE }} @@ -313,7 +313,7 @@ jobs: }' > proof/release-repeatability-result.json - name: Upload 30-day repeatability evidence - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: release-repeatability-${{ steps.release.outputs.tag }}-${{ github.run_id }}-${{ github.run_attempt }} path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 869f48dc2..57ac8e22c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: docs_sha256: ${{ steps.candidate.outputs.docs_sha256 }} steps: - name: Checkout protected promotion workflow - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ github.sha }} fetch-depth: 0 @@ -261,7 +261,7 @@ jobs: fi - name: Upload verified promotion input - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: release-promotion-input-${{ github.run_id }} path: promotion/candidate @@ -279,7 +279,7 @@ jobs: contents: write steps: - name: Checkout protected promotion workflow - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.verify.outputs.promotion_revision }} fetch-depth: 1 @@ -287,7 +287,7 @@ jobs: submodules: false - name: Checkout exact tagged product source - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.verify.outputs.source_sha }} path: product-source @@ -296,7 +296,7 @@ jobs: submodules: false - name: Download verified promotion input - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: release-promotion-input-${{ github.run_id }} path: promotion @@ -492,7 +492,7 @@ jobs: cp "${RUNNER_TEMP}/staged-draft.json" contract/draft-release.json - name: Upload draft reconciliation contract - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: release-draft-contract-${{ github.run_id }} path: contract @@ -513,7 +513,7 @@ jobs: packages: write steps: - name: Checkout protected promotion workflow - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.verify.outputs.promotion_revision }} fetch-depth: 1 @@ -521,13 +521,13 @@ jobs: submodules: false - name: Download verified candidate and draft contract - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: pattern: release-*-input-${{ github.run_id }} path: inputs - name: Download exact draft contract - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: release-draft-contract-${{ github.run_id }} path: contract @@ -609,7 +609,7 @@ jobs: fi - name: Log in for exact candidate promotion - uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v3.4.0 + uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v3.4.0 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -676,7 +676,7 @@ jobs: packages: read steps: - name: Checkout protected promotion workflow - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4.2.2 with: ref: ${{ needs.verify.outputs.promotion_revision }} fetch-depth: 1 @@ -684,13 +684,13 @@ jobs: submodules: false - name: Download exact candidate and staged draft contract - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: pattern: release-*-input-${{ github.run_id }} path: inputs - name: Download exact staged draft contract - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: release-draft-contract-${{ github.run_id }} path: contract @@ -934,7 +934,7 @@ jobs: | jq -s 'sort_by(.name)' > contract/final-assets.json - name: Upload final reconciliation contract - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: release-final-contract-${{ github.run_id }} path: contract @@ -956,13 +956,13 @@ jobs: contents: write steps: - name: Download exact candidate manifest - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: release-promotion-input-${{ github.run_id }} path: promotion - name: Download exact final contract - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: release-final-contract-${{ github.run_id }} path: contract diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index ed9b855ce..7a59ab9f3 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -17,13 +17,13 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with: fetch-depth: 0 submodules: false - name: Run OpenSSF Scorecard - uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a + uses: ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc with: results_file: scorecard-results.sarif results_format: sarif