From 5696bd9497c6fb68aa5c71e4d26ec74125c5ff3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 17:41:35 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 4.1.4 to 4.1.6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/0ad4b8fadaa221de15dcec353f45205ec38ea70b...a5ac7e51b41094c92402da3b24376905380afc29) Updates `github/codeql-action` from 3.25.3 to 3.25.7 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/d39d31e687223d841ef683f52467bd88e9b21c14...f079b8493333aace61c81488f8bd40919487bd9f) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/codeowners.yml | 2 +- .github/workflows/consuming.yml | 12 ++++++------ .github/workflows/linting.yml | 20 ++++++++++---------- .github/workflows/periodic.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/report.yml | 4 ++-- .github/workflows/testing.yml | 22 +++++++++++----------- .github/workflows/upgrade-e2e.yml | 2 +- 8 files changed, 35 insertions(+), 35 deletions(-) diff --git a/.github/workflows/codeowners.yml b/.github/workflows/codeowners.yml index c1e8bfe39..0ff65ae58 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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 6620207b4..08d01b76a 100644 --- a/.github/workflows/consuming.yml +++ b/.github/workflows/consuming.yml @@ -42,13 +42,13 @@ jobs: k8s_version: '1.24' steps: - name: Check out the Shipyard repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Build the latest Shipyard image run: make images - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: # This is replaced to stable branch by auto release process ref: release-0.16 @@ -88,13 +88,13 @@ jobs: ] steps: - name: Check out the Shipyard repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Build the latest Shipyard image run: make images - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: # This is replaced to stable branch by auto release process ref: release-0.16 @@ -143,13 +143,13 @@ jobs: ] steps: - name: Check out the Shipyard repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Build the latest Shipyard image run: make images - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: # This is replaced to stable branch by auto release process ref: release-0.16 diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 45d9b8fed..5d8f71510 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Run markdownlint run: make markdownlint @@ -92,7 +92,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Run shellcheck run: make shellcheck @@ -110,7 +110,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Run Anchore vulnerability scanner uses: anchore/scan-action@3343887d815d7b07465f6fdcd395bd66508d486a id: scan @@ -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@d39d31e687223d841ef683f52467bd88e9b21c14 + uses: github/codeql-action/upload-sarif@f079b8493333aace61c81488f8bd40919487bd9f 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Run yamllint run: make yamllint diff --git a/.github/workflows/periodic.yml b/.github/workflows/periodic.yml index 06d201361..d49db7bea 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Build go-mod-outdated run: go build -o bin/go-mod-outdated github.com/psampaz/go-mod-outdated - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: repository: submariner-io/${{ matrix.project }} path: ${{ matrix.project }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7fdb818b5..20e45b5cd 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: submodules: true diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index 165c07bea..7c53d5a53 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -18,7 +18,7 @@ jobs: security-events: write steps: - name: Check out the repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Run Anchore vulnerability scanner uses: anchore/scan-action@3343887d815d7b07465f6fdcd395bd66508d486a id: scan @@ -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@d39d31e687223d841ef683f52467bd88e9b21c14 + uses: github/codeql-action/upload-sarif@f079b8493333aace61c81488f8bd40919487bd9f with: sarif_file: ${{ steps.scan.outputs.sarif }} diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index a2c5faae0..5cb3ab85e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Set up QEMU (to support building on non-native architectures) uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Build images run: make images @@ -77,7 +77,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: submodules: true @@ -159,7 +159,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - 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 81a1fbbe2..da48cf9ce 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Install an old cluster, upgrade it and check it uses: ./gh-actions/upgrade-e2e