From db96672631f9e5816733696026505fe7a04cabcc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 07:32:57 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout 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 77c86de..9f04a2c 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 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 a02c3e3..b536565 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 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 199fdaa..265f6b0 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 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 517757a..63a8f1d 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 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 3d8df76..ca9175c 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 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 25fa3ab..a16718a 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 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 34b656b..93faf6f 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@v3 + uses: actions/checkout@v4 - 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@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # Let's get all the branches.