diff --git a/.github/workflows/build-publish-mcr.yml b/.github/workflows/build-publish-mcr.yml index e319bac9..fa4a8af4 100644 --- a/.github/workflows/build-publish-mcr.yml +++ b/.github/workflows/build-publish-mcr.yml @@ -25,7 +25,7 @@ jobs: outputs: release_tag: ${{ steps.vars.outputs.release_tag }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: 'Set output variables' @@ -51,7 +51,7 @@ jobs: uses: actions/setup-go@v6 with: go-version: ${{ env.GO_VERSION }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ needs.prepare-variables.outputs.release_tag }} - name: 'Login the ACR' @@ -80,7 +80,7 @@ jobs: uses: actions/setup-go@v6 with: go-version: ${{ env.GO_VERSION }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ needs.prepare-variables.outputs.release_tag }} - name: 'Install the Azure CLI' diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index c56c5285..4a72a9d7 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 621d912e..16c61b36 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -57,7 +57,7 @@ jobs: go-version: ${{ env.GO_VERSION }} - name: Check out code into the Go module directory - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Prepare e2e variables run: | diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index be0244ec..2011e8c5 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -45,7 +45,7 @@ jobs: go-version: ${{ env.GO_VERSION }} - name: Check out code into the Go module directory - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: golangci-lint run: make lint diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index f52f8e8c..82c2cb93 100644 --- a/.github/workflows/markdown-lint.yml +++ b/.github/workflows/markdown-lint.yml @@ -10,7 +10,7 @@ jobs: markdown-link-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: gaurav-nelson/github-action-markdown-link-check@v1 with: # this will only show errors in the output diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index 29e6729d..ffd62bc0 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -41,7 +41,7 @@ jobs: uses: actions/setup-go@v6 with: go-version: ${{ env.GO_VERSION }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set image version for a new release if: startsWith(github.ref, 'refs/tags/') run: | diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml index e0934324..1514aa7e 100644 --- a/.github/workflows/trivy.yml +++ b/.github/workflows/trivy.yml @@ -44,7 +44,7 @@ jobs: go-version: ${{ env.GO_VERSION }} - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Login to ${{ env.REGISTRY }} uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee diff --git a/.github/workflows/unit-integration-tests.yml b/.github/workflows/unit-integration-tests.yml index 4560c6f8..2f433dd2 100644 --- a/.github/workflows/unit-integration-tests.yml +++ b/.github/workflows/unit-integration-tests.yml @@ -43,7 +43,7 @@ jobs: go-version: ${{ env.GO_VERSION }} - name: Check out code into the Go module directory - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Ginkgo CLI run: |