Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: "terraform"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
- name: Cache terraform folder
Expand All @@ -25,7 +25,7 @@ jobs:
name: "tflint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/cache@v4
name: Cache tflint plugin dir
with:
Expand All @@ -41,7 +41,7 @@ jobs:
name: "tfsec"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Run tfsec with reviewdog output on the PR
uses: reviewdog/action-tfsec@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: github.ref == 'refs/heads/main'
environment: prod
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: gh cli auth
run: echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
Expand Down
Loading