Skip to content

Commit b4728c2

Browse files
chore(deps): bump actions/checkout from 3 to 4
chore(deps): bump actions/checkout from 3 to 4
2 parents 554c042 + bf7ad5a commit b4728c2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/check-deployments.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
outputs:
2626
matrix: ${{ steps.set-matrix.outputs.matrix }}
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
- id: set-matrix
3030
run: |
3131
MATRIX=$(cat build_targets.json | jq -c)
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
matrix: ${{ fromJson(needs.collect.outputs.matrix) }}
4747
steps:
48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v4
4949

5050
# To test whether the deployment package is up to date,
5151
# we only check the application code (excluding dependencies).

.github/workflows/pre-commit-and-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
container: bjorncloudandthings/terraform-aws-github:latest
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
- uses: actions/setup-python@v4
3737
with:
3838
python-version: 3.11
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-latest
7373
container: bjorncloudandthings/terraform-aws-github:latest
7474
steps:
75-
- uses: actions/checkout@v3
75+
- uses: actions/checkout@v4
7676
- uses: actions/setup-python@v4
7777
with:
7878
python-version: 3.11

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
container: bjorncloudandthings/terraform-aws-github:latest
4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
with:
4949
fetch-depth: 0
5050
#--------------------------------------------

.github/workflows/terraform-min-max.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
outputs:
1313
directories: ${{ steps.set-matrix.outputs.matrix }}
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- id: set-matrix
1717
run: |
1818
DIRS=$(find . -type f -name '*.tf' -not -path '**/.*' | sed -r 's|/[^/]+$||' | sort | uniq)
@@ -32,7 +32,7 @@ jobs:
3232
directory: ${{ fromJson(needs.collectDirectories.outputs.directories) }}
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636

3737
- name: Get Terraform min/max versions
3838
id: minMax

0 commit comments

Comments
 (0)