From 63f4f76280bd81057fd1f1725ee880b6efae97e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 01:04:01 +0000 Subject: [PATCH] github-actions: bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 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/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/activate-stack.yml | 2 +- .github/workflows/daily-build.yml | 2 +- .github/workflows/persistent-environment.yml | 12 ++++++------ .github/workflows/pr-env-deploy.yml | 10 +++++----- .github/workflows/pr-env-destroy.yml | 2 +- .github/workflows/rollback-stack.yml | 2 +- .github/workflows/update-lambda-permissions.yml | 10 +++++----- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/activate-stack.yml b/.github/workflows/activate-stack.yml index b5137a0fd..9f36d3605 100644 --- a/.github/workflows/activate-stack.yml +++ b/.github/workflows/activate-stack.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.ref }} diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml index f7c84d787..5434d205c 100644 --- a/.github/workflows/daily-build.yml +++ b/.github/workflows/daily-build.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.ref }} diff --git a/.github/workflows/persistent-environment.yml b/.github/workflows/persistent-environment.yml index 3559e39dd..783634411 100644 --- a/.github/workflows/persistent-environment.yml +++ b/.github/workflows/persistent-environment.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.branch_name }} @@ -81,7 +81,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.branch_name }} @@ -154,7 +154,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.branch_name }} @@ -230,7 +230,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.branch_name }} @@ -261,7 +261,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.branch_name }} @@ -292,7 +292,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.branch_name }} diff --git a/.github/workflows/pr-env-deploy.yml b/.github/workflows/pr-env-deploy.yml index 7a0f13128..ea7cd7b68 100644 --- a/.github/workflows/pr-env-deploy.yml +++ b/.github/workflows/pr-env-deploy.yml @@ -50,7 +50,7 @@ jobs: environment: pull-request steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.ref }} @@ -113,7 +113,7 @@ jobs: steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.ref }} @@ -197,7 +197,7 @@ jobs: steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.ref }} @@ -234,7 +234,7 @@ jobs: runs-on: codebuild-nhsd-nrlf-ci-build-project-${{ github.run_id }}-${{ github.run_attempt }} steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.ref }} @@ -269,7 +269,7 @@ jobs: steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.ref }} diff --git a/.github/workflows/pr-env-destroy.yml b/.github/workflows/pr-env-destroy.yml index 8c9c76900..f51d47cd1 100644 --- a/.github/workflows/pr-env-destroy.yml +++ b/.github/workflows/pr-env-destroy.yml @@ -53,7 +53,7 @@ jobs: steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.merged && github.event.pull_request.base.ref || github.event.pull_request.head.ref }} diff --git a/.github/workflows/rollback-stack.yml b/.github/workflows/rollback-stack.yml index 2d2a31ae8..a41d3518b 100644 --- a/.github/workflows/rollback-stack.yml +++ b/.github/workflows/rollback-stack.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.ref }} diff --git a/.github/workflows/update-lambda-permissions.yml b/.github/workflows/update-lambda-permissions.yml index c7017724d..d5e0b9e4a 100644 --- a/.github/workflows/update-lambda-permissions.yml +++ b/.github/workflows/update-lambda-permissions.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.ref }} @@ -85,7 +85,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.ref }} @@ -124,7 +124,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.ref }} @@ -166,7 +166,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.ref }} @@ -232,7 +232,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.ref }}