diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml index 6c989fc..88956a2 100644 --- a/.github/workflows/build-image.yaml +++ b/.github/workflows/build-image.yaml @@ -87,7 +87,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - if: inputs.preScript != '' name: Run script before the docker image is built run: | @@ -175,7 +175,7 @@ jobs: containerfile_targets: ${{ fromJson(inputs.imageTargets) }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - if: inputs.preScript != '' name: Run script before the docker image is built run: | @@ -261,7 +261,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - if: inputs.preScript != '' name: Run script before the docker image is built run: | diff --git a/.github/workflows/ci-requirements.yaml b/.github/workflows/ci-requirements.yaml index 80bd446..074ece8 100644 --- a/.github/workflows/ci-requirements.yaml +++ b/.github/workflows/ci-requirements.yaml @@ -30,7 +30,7 @@ jobs: full_run_required: ${{ steps.check_full_run_required.outputs.full_run_required }} test_run_required: ${{ steps.check_test_run_required.outputs.test_run_required }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/ci.pr.yaml b/.github/workflows/ci.pr.yaml index 2783c59..73ef8cd 100644 --- a/.github/workflows/ci.pr.yaml +++ b/.github/workflows/ci.pr.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up go environment uses: actions/setup-go@v6 - name: Install actionlint diff --git a/.github/workflows/ci.update-major-version-tag.yaml b/.github/workflows/ci.update-major-version-tag.yaml index 682cd39..7f14ebd 100644 --- a/.github/workflows/ci.update-major-version-tag.yaml +++ b/.github/workflows/ci.update-major-version-tag.yaml @@ -22,7 +22,7 @@ jobs: if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.release.prerelease == false }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Extract major version diff --git a/.github/workflows/container.yaml b/.github/workflows/container.yaml index 52d2ada..116fe95 100644 --- a/.github/workflows/container.yaml +++ b/.github/workflows/container.yaml @@ -84,7 +84,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Validate base image registry secrets if: ${{ inputs.baseImageRegistry }} run: | diff --git a/.github/workflows/deployment.yaml b/.github/workflows/deployment.yaml index f0e97f3..b28f53d 100644 --- a/.github/workflows/deployment.yaml +++ b/.github/workflows/deployment.yaml @@ -70,7 +70,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Load k8s deployment variables id: k8s run: | diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 18f6f47..7780a00 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -48,11 +48,11 @@ jobs: # shellcheck disable=SC2086 echo "docs-push-folder=${{ github.workspace }}/remote/repos/${{ github.event.repository.name }}" >> $GITHUB_OUTPUT - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: this - name: Checkout ${{ inputs.docsRepo }} git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: remote ref: main diff --git a/.github/workflows/js.yaml b/.github/workflows/js.yaml index 9448787..8074f7a 100644 --- a/.github/workflows/js.yaml +++ b/.github/workflows/js.yaml @@ -37,7 +37,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Use Node.js uses: actions/setup-node@v6 with: diff --git a/.github/workflows/json.yaml b/.github/workflows/json.yaml index 9a755c6..9f07637 100644 --- a/.github/workflows/json.yaml +++ b/.github/workflows/json.yaml @@ -18,7 +18,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Lint JSON uses: actionsx/prettier@v3 with: diff --git a/.github/workflows/kubernetes.yaml b/.github/workflows/kubernetes.yaml index d1907be..8e5e52b 100644 --- a/.github/workflows/kubernetes.yaml +++ b/.github/workflows/kubernetes.yaml @@ -238,7 +238,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout ${{ inputs.deploymentRepoURL }} git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ inputs.deploymentRepoURL }} path: remote diff --git a/.github/workflows/npm.yaml b/.github/workflows/npm.yaml index 3147e1b..0d8b8b3 100644 --- a/.github/workflows/npm.yaml +++ b/.github/workflows/npm.yaml @@ -69,7 +69,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of REPO_ACCESS_TOKEN fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index df320de..9782bd5 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -30,7 +30,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Label PR based on pushed file paths continue-on-error: true uses: actions/labeler@v6.1.0 diff --git a/.github/workflows/preview.build-image.yaml b/.github/workflows/preview.build-image.yaml index 771a66e..15db4a1 100644 --- a/.github/workflows/preview.build-image.yaml +++ b/.github/workflows/preview.build-image.yaml @@ -39,7 +39,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Download build artifact if: inputs.artifactPath != '' && inputs.artifactName != '' uses: actions/download-artifact@v8 diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index ee67e4b..d8a5fce 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -23,7 +23,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - uses: actions/setup-python@v6 with: python-version: ${{ inputs.pythonVersion }} diff --git a/.github/workflows/shell.yaml b/.github/workflows/shell.yaml index 5bdfb35..4c96b8a 100644 --- a/.github/workflows/shell.yaml +++ b/.github/workflows/shell.yaml @@ -23,6 +23,6 @@ jobs: container: koalaman/shellcheck-alpine:v0.9.0 steps: - name: Checkout git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check shell scripts run: 'find . -type f \( -name "*.sh" \) ${{ inputs.findCommandExtraArgs }} -print | while IFS="" read -r file; do shellcheck "$file"; done;' diff --git a/.github/workflows/terraform.yaml b/.github/workflows/terraform.yaml index 55c5e06..091aab2 100644 --- a/.github/workflows/terraform.yaml +++ b/.github/workflows/terraform.yaml @@ -27,7 +27,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Terraform uses: hashicorp/setup-terraform@v4 with: diff --git a/.github/workflows/yaml.yaml b/.github/workflows/yaml.yaml index 5bddac5..6babe49 100644 --- a/.github/workflows/yaml.yaml +++ b/.github/workflows/yaml.yaml @@ -22,7 +22,7 @@ jobs: timeout-minutes: ${{ inputs.timeoutMinutes }} steps: - name: Checkout current git repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Lint all YAML files uses: actionsx/prettier@v3