Skip to content

Commit 282936f

Browse files
chore(deps): 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](actions/checkout@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] <[email protected]>
1 parent 54c68be commit 282936f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Git pull
1919
run: git pull origin main

.github/workflows/terraform-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
directories: ${{ steps.dirs.outputs.directories }}
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- name: Get root directories
3939
id: dirs
@@ -56,7 +56,7 @@ jobs:
5656
rm -rf /opt/hostedtoolcache/go
5757
5858
- name: Checkout
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060

6161
- name: Terraform min/max versions
6262
id: minMax
@@ -96,7 +96,7 @@ jobs:
9696
rm -rf /opt/hostedtoolcache/go
9797
9898
- name: Checkout
99-
uses: actions/checkout@v4
99+
uses: actions/checkout@v5
100100
with:
101101
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
102102
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/terraform-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
2525
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/update-configs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212

1313
steps:
1414
- name: Checkout template repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
repository: infraspecdev/terraform-module-template
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919
path: template-repo
2020

2121
- name: Checkout target repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
repository: ${{ github.repository }}
2525
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)