diff --git a/.github/workflows/codeowners.yml b/.github/workflows/codeowners.yml index 19cc815a..67f8cbd6 100644 --- a/.github/workflows/codeowners.yml +++ b/.github/workflows/codeowners.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Delete current CODEOWNERS file run: rm CODEOWNERS - name: Run gen-codeowners to rebuild CODEOWNERS file diff --git a/.github/workflows/consuming.yml b/.github/workflows/consuming.yml index c73310fd..7aaffd73 100644 --- a/.github/workflows/consuming.yml +++ b/.github/workflows/consuming.yml @@ -32,7 +32,7 @@ jobs: k8s_version: '1.26' steps: - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: # This is replaced to stable branch by auto release process ref: release-0.18 @@ -41,7 +41,7 @@ jobs: # Check out Shipyard as a sub directory of the project, so that `go replace` can work. # As it's all run inside an ephemeral container, this way guarantees the Shipyard bits will be readily available for `go replace`. - name: Check out the Shipyard repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: path: shipyard @@ -83,13 +83,13 @@ jobs: ] steps: - name: Check out the Shipyard repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Build the latest Shipyard image run: make images - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: # This is replaced to stable branch by auto release process ref: release-0.18 @@ -138,13 +138,13 @@ jobs: ] steps: - name: Check out the Shipyard repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Build the latest Shipyard image run: make images - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: # This is replaced to stable branch by auto release process ref: release-0.18 diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index d538896f..5fd98cdc 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Make sure each commit in the PR is within reviewable size uses: ./gh-actions/commit-size with: @@ -49,7 +49,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: fetch-depth: 0 - name: Run gitlint @@ -60,7 +60,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run golangci-lint run: make golangci-lint @@ -69,7 +69,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run markdown-link-check uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec @@ -83,7 +83,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run markdownlint run: make markdownlint @@ -92,7 +92,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run packagedoc-lint run: make packagedoc-lint @@ -101,7 +101,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run shellcheck run: make shellcheck @@ -110,9 +110,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run Anchore vulnerability scanner - uses: anchore/scan-action@64a33b277ea7a1215a3c142735a1091341939ff5 + uses: anchore/scan-action@5ed195cc06065322983cae4bb31e2a751feb86fd id: scan with: path: "." @@ -123,7 +123,7 @@ jobs: run: cat ${{ steps.scan.outputs.sarif }} - name: Upload Anchore scan SARIF report if: always() - uses: github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13 + uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd with: sarif_file: ${{ steps.scan.outputs.sarif }} @@ -132,6 +132,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run yamllint run: make yamllint diff --git a/.github/workflows/periodic.yml b/.github/workflows/periodic.yml index 5f50a4a1..1d00517b 100644 --- a/.github/workflows/periodic.yml +++ b/.github/workflows/periodic.yml @@ -16,7 +16,7 @@ jobs: issues: write steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run markdown-link-check uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec @@ -44,13 +44,13 @@ jobs: ] steps: - name: Check out the Shipyard repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Build go-mod-outdated run: cd tools && go build -o ../bin/go-mod-outdated github.com/psampaz/go-mod-outdated - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: repository: submariner-io/${{ matrix.project }} path: ${{ matrix.project }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2563f669..3a35e3c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: submodules: true diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index 8d0da84e..dd2a1b45 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -18,9 +18,9 @@ jobs: security-events: write steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run Anchore vulnerability scanner - uses: anchore/scan-action@64a33b277ea7a1215a3c142735a1091341939ff5 + uses: anchore/scan-action@5ed195cc06065322983cae4bb31e2a751feb86fd id: scan with: path: "." @@ -28,6 +28,6 @@ jobs: - name: Show Anchore scan SARIF report run: cat ${{ steps.scan.outputs.sarif }} - name: Upload Anchore scan SARIF report - uses: github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13 + uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd with: sarif_file: ${{ steps.scan.outputs.sarif }} diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d5e45caa..e30ff172 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -15,13 +15,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Set up QEMU (to support building on non-native architectures) uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf - name: Set up buildx - uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db + uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 - name: Restore images from the cache uses: ./gh-actions/restore-images @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Restore images from the cache uses: ./gh-actions/restore-images @@ -59,7 +59,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Build images run: make images @@ -77,7 +77,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Restore images from the cache uses: ./gh-actions/restore-images @@ -95,7 +95,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Restore images from the cache uses: ./gh-actions/restore-images @@ -135,7 +135,7 @@ jobs: run: rm -rf /usr/share/dotnet - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: submodules: true @@ -159,7 +159,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Restore images from the cache uses: ./gh-actions/restore-images @@ -176,7 +176,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Build the images if necessary uses: ./gh-actions/cache-images @@ -187,7 +187,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Restore images from the cache uses: ./gh-actions/restore-images @@ -201,7 +201,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Restore images from the cache uses: ./gh-actions/restore-images @@ -218,7 +218,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Restore images from the cache uses: ./gh-actions/restore-images diff --git a/.github/workflows/upgrade-e2e.yml b/.github/workflows/upgrade-e2e.yml index e6ff3ecf..199f10af 100644 --- a/.github/workflows/upgrade-e2e.yml +++ b/.github/workflows/upgrade-e2e.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Install an old cluster, upgrade it and check it uses: ./gh-actions/upgrade-e2e