diff --git a/.github/workflows/build-publish-mcr.yml b/.github/workflows/build-publish-mcr.yml index cb5edf96..dfcfeae0 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@v5 + - uses: actions/checkout@v6 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@v5 + - uses: actions/checkout@v6 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@v5 + - uses: actions/checkout@v6 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 67f30593..c56c5285 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@v5 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index aed41f4f..2386d223 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@v5 + uses: actions/checkout@v6 - name: Prepare e2e variables run: | diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 936a78fa..1faf36ba 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@v5 + uses: actions/checkout@v6 - name: golangci-lint run: make lint diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index a42f986a..f52f8e8c 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@v5 + - uses: actions/checkout@v6 - 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 c9687d94..ce9478fe 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@v5 + - uses: actions/checkout@v6 - 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 85c5234d..2159e155 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@v5 + uses: actions/checkout@v6 - name: Login to ${{ env.REGISTRY }} uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef diff --git a/.github/workflows/unit-integration-tests.yml b/.github/workflows/unit-integration-tests.yml index 25bc1753..ea06ad12 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@v5 + uses: actions/checkout@v6 - name: Set up Ginkgo CLI run: |