From 5f49df6d1fe02b5e55373613eedd51fb2b07a9e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 02:03:08 +0000 Subject: [PATCH] github-actions: bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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 97a7e141b..5d029b61a 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@v5 with: ref: ${{ github.ref }} diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml index 6a5265431..8e1bfd3eb 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@v5 with: ref: ${{ github.ref }} diff --git a/.github/workflows/persistent-environment.yml b/.github/workflows/persistent-environment.yml index c4f2e49f4..2157923f7 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@v5 with: ref: ${{ inputs.branch_name }} @@ -79,7 +79,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch_name }} @@ -143,7 +143,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch_name }} @@ -209,7 +209,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch_name }} @@ -238,7 +238,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch_name }} @@ -267,7 +267,7 @@ jobs: steps: - name: Git clone - ${{ inputs.branch_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch_name }} diff --git a/.github/workflows/pr-env-deploy.yml b/.github/workflows/pr-env-deploy.yml index d5ac9a878..abdf1642f 100644 --- a/.github/workflows/pr-env-deploy.yml +++ b/.github/workflows/pr-env-deploy.yml @@ -48,7 +48,7 @@ jobs: environment: pull-request steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.ref }} @@ -111,7 +111,7 @@ jobs: steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.ref }} @@ -193,7 +193,7 @@ jobs: steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.ref }} @@ -230,7 +230,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@v5 with: ref: ${{ github.event.pull_request.head.ref }} @@ -265,7 +265,7 @@ jobs: steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 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 ab8f2f4bd..7a274431a 100644 --- a/.github/workflows/pr-env-destroy.yml +++ b/.github/workflows/pr-env-destroy.yml @@ -51,7 +51,7 @@ jobs: steps: - name: Git Clone - ${{ github.event.pull_request.head.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 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 954abc18b..733d52805 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@v5 with: ref: ${{ github.ref }} diff --git a/.github/workflows/update-lambda-permissions.yml b/.github/workflows/update-lambda-permissions.yml index 6a68e371f..a654457a2 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@v5 with: ref: ${{ github.ref }} @@ -81,7 +81,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.ref }} @@ -117,7 +117,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.ref }} @@ -156,7 +156,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.ref }} @@ -215,7 +215,7 @@ jobs: steps: - name: Git clone - ${{ github.ref }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.ref }}