Skip to content

Commit e021cd2

Browse files
vjdhamaclaude
andcommitted
chore: update GitHub Actions to latest stable versions
- Update actions/checkout from v4 to v5 across all workflows - Update terraform-docs/gh-actions from @main to v1.4.1 (pinned stable version) - Keep semantic-release-action at v5 (confirmed as latest) - Improves security, performance, and stability 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 54c68be commit e021cd2

File tree

3 files changed

+7
-7
lines changed

3 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-docs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ 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 }}
2626

2727
- name: Render and Push terraform docs for main module
2828
if: github.actor != 'dependabot[bot]'
29-
uses: terraform-docs/gh-actions@main
29+
uses: terraform-docs/gh-actions@v1.4.1
3030
with:
3131
working-dir: .
3232
git-push: "true"
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Render and Push terraform docs for sub modules
4949
if: env.modules_exists == 'true' && github.actor != 'dependabot[bot]'
50-
uses: terraform-docs/gh-actions@main
50+
uses: terraform-docs/gh-actions@v1.4.1
5151
with:
5252
working-dir: .
5353
git-push: "true"
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Render and Push terraform docs for examples
7272
if: env.examples_exists == 'true' && github.actor != 'dependabot[bot]'
73-
uses: terraform-docs/gh-actions@main
73+
uses: terraform-docs/gh-actions@v1.4.1
7474
with:
7575
working-dir: .
7676
git-push: "true"

.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)