From 8815dc857921b6935025d0a5e5179c6cf9ab70b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 15:15:31 +0000 Subject: [PATCH] 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/_reusable-deploy.yml | 2 +- .github/workflows/_reusable-destroy.yml | 2 +- .github/workflows/_reusable-pipeline.yml | 2 +- .github/workflows/_reusable-publish.yml | 2 +- .github/workflows/_reusable-webapp-test.yml | 2 +- .github/workflows/on-push-to-branch.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_reusable-deploy.yml b/.github/workflows/_reusable-deploy.yml index 2e79b73d..e29c3660 100644 --- a/.github/workflows/_reusable-deploy.yml +++ b/.github/workflows/_reusable-deploy.yml @@ -67,7 +67,7 @@ jobs: env: TF_WORKSPACE: ${{ inputs.terraform_workspace }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ inputs.image_tag }} - name: Configure AWS credentials diff --git a/.github/workflows/_reusable-destroy.yml b/.github/workflows/_reusable-destroy.yml index 745d7057..578608e3 100644 --- a/.github/workflows/_reusable-destroy.yml +++ b/.github/workflows/_reusable-destroy.yml @@ -64,7 +64,7 @@ jobs: env: TF_WORKSPACE: ${{ inputs.terraform_workspace }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ inputs.image_tag }} - name: Configure AWS credentials diff --git a/.github/workflows/_reusable-pipeline.yml b/.github/workflows/_reusable-pipeline.yml index 3ddcef0b..f7591281 100644 --- a/.github/workflows/_reusable-pipeline.yml +++ b/.github/workflows/_reusable-pipeline.yml @@ -66,7 +66,7 @@ jobs: run: working-directory: terraform steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: hashicorp/setup-terraform@v3 with: terraform_version: ">=1.5.0" diff --git a/.github/workflows/_reusable-publish.yml b/.github/workflows/_reusable-publish.yml index 91e7874a..9954ad1c 100644 --- a/.github/workflows/_reusable-publish.yml +++ b/.github/workflows/_reusable-publish.yml @@ -47,7 +47,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Configure AWS credentials diff --git a/.github/workflows/_reusable-webapp-test.yml b/.github/workflows/_reusable-webapp-test.yml index a953ed9b..5f6e5b77 100644 --- a/.github/workflows/_reusable-webapp-test.yml +++ b/.github/workflows/_reusable-webapp-test.yml @@ -21,7 +21,7 @@ jobs: name: Webapp unit tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: node-version: 18.17.0 diff --git a/.github/workflows/on-push-to-branch.yml b/.github/workflows/on-push-to-branch.yml index 0c578b08..29f604d7 100644 --- a/.github/workflows/on-push-to-branch.yml +++ b/.github/workflows/on-push-to-branch.yml @@ -17,7 +17,7 @@ jobs: run: working-directory: terraform steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: hashicorp/setup-terraform@v3 with: terraform_version: ">=1.5.0"