From a594a98b945af9f593e3152c53cae125a52555cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 11:54:27 +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/0-welcome.yml | 4 ++-- .github/workflows/1-configure-label-based-job.yml | 4 ++-- .github/workflows/2-setup-azure-environment.yml | 4 ++-- .github/workflows/3-spinup-environment.yml | 4 ++-- .github/workflows/4-deploy-to-staging-environment.yml | 4 ++-- .github/workflows/5-deploy-to-prod-environment.yml | 4 ++-- .github/workflows/6-destroy-azure-environment.yml | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/0-welcome.yml b/.github/workflows/0-welcome.yml index 9f04a2c..a191ec0 100644 --- a/.github/workflows/0-welcome.yml +++ b/.github/workflows/0-welcome.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: get_step run: | echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT @@ -50,7 +50,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README. - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches. diff --git a/.github/workflows/1-configure-label-based-job.yml b/.github/workflows/1-configure-label-based-job.yml index b536565..e857dd2 100644 --- a/.github/workflows/1-configure-label-based-job.yml +++ b/.github/workflows/1-configure-label-based-job.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: get_step run: | echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT @@ -51,7 +51,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README. - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches. diff --git a/.github/workflows/2-setup-azure-environment.yml b/.github/workflows/2-setup-azure-environment.yml index 265f6b0..6ad155a 100644 --- a/.github/workflows/2-setup-azure-environment.yml +++ b/.github/workflows/2-setup-azure-environment.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: get_step run: | echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT @@ -51,7 +51,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README. - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches. diff --git a/.github/workflows/3-spinup-environment.yml b/.github/workflows/3-spinup-environment.yml index 63a8f1d..89debf5 100644 --- a/.github/workflows/3-spinup-environment.yml +++ b/.github/workflows/3-spinup-environment.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: get_step run: | echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT @@ -51,7 +51,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README. - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches. diff --git a/.github/workflows/4-deploy-to-staging-environment.yml b/.github/workflows/4-deploy-to-staging-environment.yml index ca9175c..f63531f 100644 --- a/.github/workflows/4-deploy-to-staging-environment.yml +++ b/.github/workflows/4-deploy-to-staging-environment.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: get_step run: | echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT @@ -49,7 +49,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README. - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches. diff --git a/.github/workflows/5-deploy-to-prod-environment.yml b/.github/workflows/5-deploy-to-prod-environment.yml index a16718a..75eee75 100644 --- a/.github/workflows/5-deploy-to-prod-environment.yml +++ b/.github/workflows/5-deploy-to-prod-environment.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: get_step run: | echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT @@ -50,7 +50,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README. - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches. diff --git a/.github/workflows/6-destroy-azure-environment.yml b/.github/workflows/6-destroy-azure-environment.yml index 93faf6f..60db33e 100644 --- a/.github/workflows/6-destroy-azure-environment.yml +++ b/.github/workflows/6-destroy-azure-environment.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: get_step run: | echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT @@ -50,7 +50,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README. - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches.