From 1cd695901b96eecbf533f9138bf8e6fb6d3c77e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 17:25:21 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.0 to 4.1.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. - [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/8ade135a41bc03ea155e62e844d188df1ea18608...b4ffde65f46336ab88eb53be808477a3936bae11) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/clean-tests.yml | 4 ++-- .github/workflows/codeowners.yml | 2 +- .github/workflows/consuming.yml | 12 ++++++------ .github/workflows/linting.yml | 20 ++++++++++---------- .github/workflows/multiarch.yml | 2 +- .github/workflows/periodic.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/report.yml | 2 +- .github/workflows/scripts.yml | 10 +++++----- .github/workflows/unit.yml | 2 +- .github/workflows/upgrade-e2e.yml | 2 +- 11 files changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/clean-tests.yml b/.github/workflows/clean-tests.yml index 6672a95ea..3e35d88bc 100644 --- a/.github/workflows/clean-tests.yml +++ b/.github/workflows/clean-tests.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Deploy clusters env: @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Build images run: make images diff --git a/.github/workflows/codeowners.yml b/.github/workflows/codeowners.yml index fa2205c08..65cb09dcc 100644 --- a/.github/workflows/codeowners.yml +++ b/.github/workflows/codeowners.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - 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 0fc07f350..8f7be5780 100644 --- a/.github/workflows/consuming.yml +++ b/.github/workflows/consuming.yml @@ -38,13 +38,13 @@ jobs: k8s_version: '1.22' steps: - name: Check out the Shipyard repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Build the latest Shipyard image run: make images - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: # This is replaced to stable branch by auto release process ref: release-0.13 @@ -84,13 +84,13 @@ jobs: ] steps: - name: Check out the Shipyard repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Build the latest Shipyard image run: make images - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: # This is replaced to stable branch by auto release process ref: release-0.13 @@ -139,13 +139,13 @@ jobs: ] steps: - name: Check out the Shipyard repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Build the latest Shipyard image run: make images - name: Check out the ${{ matrix.project }} repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: # This is replaced to stable branch by auto release process ref: release-0.13 diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 19fc53eb3..cb224918c 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Make sure each commit in the PR is within reviewable size uses: ./gh-actions/commit-size with: @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 - name: Run gitlint @@ -58,7 +58,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run golangci-lint run: make golangci-lint @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Check License Headers uses: kt3k/license_checker@d12a6d90c58e30fefed09f2c4d03ba57f4c673a8 @@ -77,7 +77,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run markdown-link-check uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec @@ -91,7 +91,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run markdownlint run: make markdownlint @@ -100,7 +100,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run packagedoc-lint run: make packagedoc-lint @@ -109,7 +109,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run shellcheck run: make shellcheck @@ -118,7 +118,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run Anchore vulnerability scanner uses: anchore/scan-action@24fd7c9060f3c96848dd1929fac8d796fb5ae4b4 id: scan @@ -140,6 +140,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run yamllint run: make yamllint diff --git a/.github/workflows/multiarch.yml b/.github/workflows/multiarch.yml index eecdc5ae3..ff40daa91 100644 --- a/.github/workflows/multiarch.yml +++ b/.github/workflows/multiarch.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set up QEMU (to support building on non-native architectures) uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 - name: Set up buildx diff --git a/.github/workflows/periodic.yml b/.github/workflows/periodic.yml index 8e2d61561..7f2028df8 100644 --- a/.github/workflows/periodic.yml +++ b/.github/workflows/periodic.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run markdown-link-check uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec @@ -40,13 +40,13 @@ jobs: ] steps: - name: Check out the Shipyard repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - 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@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: repository: submariner-io/${{ matrix.project }} path: ${{ matrix.project }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2b4b02b8..fe831d184 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: submodules: true diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index 32e3c04a2..3bd7d7952 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run Anchore vulnerability scanner uses: anchore/scan-action@24fd7c9060f3c96848dd1929fac8d796fb5ae4b4 id: scan diff --git a/.github/workflows/scripts.yml b/.github/workflows/scripts.yml index c8c4aafc0..db6d4e928 100644 --- a/.github/workflows/scripts.yml +++ b/.github/workflows/scripts.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Deploy clusters env: @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Test the compile.sh script run: make vendor/modules.txt script-test SCRIPT_TEST_ARGS="test/scripts/compile/test.sh" @@ -58,7 +58,7 @@ jobs: run: rm -rf /usr/share/dotnet - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: submodules: true @@ -84,7 +84,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run E2E deployment and tests run: make e2e @@ -98,7 +98,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Deploy some clusters run: make clusters diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index c3df5a7e4..9e76415d4 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -10,6 +10,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Run unit which is expected to fail run: sh -c '! make unit' diff --git a/.github/workflows/upgrade-e2e.yml b/.github/workflows/upgrade-e2e.yml index 2ba68b809..9751952ed 100644 --- a/.github/workflows/upgrade-e2e.yml +++ b/.github/workflows/upgrade-e2e.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false steps: - name: Check out the repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install an old cluster, upgrade it and check it uses: ./gh-actions/upgrade-e2e