Skip to content

Commit

Permalink
Merge pull request #899 from DFE-Digital/dependabot/github_actions/ac…
Browse files Browse the repository at this point in the history
…tions/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
gpeng authored Jan 19, 2024
2 parents 88e68a1 + 21f107d commit 80f9230
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
outputs:
docker_image: ${{ steps.dockerimage.outputs.docker_image_tag }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/build-docker
id: dockerimage
with:
Expand All @@ -43,7 +43,7 @@ jobs:
name: review

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/deploy
id: deploy
with:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
environment_url: ${{ steps.deploy.outputs.environment_url }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/deploy
id: deploy
with:
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
environment_url: ${{ steps.deploy.outputs.environment_url }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/deploy
id: deploy
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-review-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
environment: review
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Extract configuration from tfvars
id: config
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
environment:
name: development
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Docker image tag
id: image
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Prepare application environment
uses: ./.github/actions/prepare-app-env
Expand All @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Prepare application environment
uses: ./.github/actions/prepare-app-env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Prepare application environment
uses: ./.github/actions/prepare-app-env
Expand Down

0 comments on commit 80f9230

Please sign in to comment.