Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
name: check misspelling by typos
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: cachix/install-nix-action@v31
- name: Run typos command
shell: nix shell nixpkgs#typos --quiet --command bash {0}
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
name: lint opentofu code by tflint
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: cachix/install-nix-action@v31
- name: Run tflint command
shell: nix shell nixpkgs#tflint --quiet --command bash {0}
Expand All @@ -33,7 +33,7 @@ jobs:
run:
working-directory: ./infra # Set working directory for apply job.
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: opentofu/setup-opentofu@v1
- name: Run OpenTofu commands
env:
Expand All @@ -50,7 +50,7 @@ jobs:
permissions:
security-events: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@0.33.1
with:
Expand All @@ -75,7 +75,7 @@ jobs:
permissions:
security-events: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@0.33.1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/infra-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run:
working-directory: ./infra # Set working directory for apply job.
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: opentofu/setup-opentofu@v1
- name: Run OpenTofu commands
env:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
run:
working-directory: ./infra # Set working directory for apply job.
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Download encrypted plan artifact
uses: actions/download-artifact@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/infra-destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run:
working-directory: ./infra # Set working directory for apply job.
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: opentofu/setup-opentofu@v1
- name: Run OpenTofu commands
env:
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
run:
working-directory: ./infra # Set working directory for apply job.
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Download encrypted plan artifact
uses: actions/download-artifact@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history.
filter: blob:none
Expand Down