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
2 changes: 1 addition & 1 deletion .github/workflows/go-fbf-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
operating-system: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: infra/utils/fbf/go.mod
cache-dependency-path: infra/utils/fbf/go.sum
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- ${{ matrix.folder }}/**
- ".github/workflows/go-lint.yaml"
- if: steps.changes.outputs.src == 'true'
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: ${{ matrix.folder }}/go.mod
cache-dependency-path: ${{ matrix.folder }}/go.sum
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-module-swapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
operating-system: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: infra/module-swapper/go.mod
cache-dependency-path: infra/module-swapper/go.sum
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-tflint-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
operating-system: [ubuntu-latest]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: tflint-ruleset-blueprint/go.mod
cache-dependency-path: tflint-ruleset-blueprint/go.sum
Expand All @@ -50,11 +50,11 @@
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: 'tflint-ruleset-blueprint/go.mod'
- run: echo "GORELEASER_CURRENT_TAG=v0.0.0" >> $GITHUB_ENV # sample tag for testing goreleaser
- run: echo "${{env.GORELEASER_CURRENT_TAG}}"

Check failure on line 57 in .github/workflows/go-tflint-plugin.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/template-injection

code injection via template expansion: may expand into attacker-controllable code

Check failure on line 57 in .github/workflows/go-tflint-plugin.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

template-injection

go-tflint-plugin.yml:57: code injection via template expansion: may expand into attacker-controllable code
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@f06c13b6b1a9625abc9e6e439d9c05a8f2190e94 # v7.2.3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
Expand Down Expand Up @@ -75,7 +75,7 @@
- name: Create Release
if: env.LAST_VERSION != env.CURRENT_VERSION
id: create_release
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1

Check warning on line 78 in .github/workflows/release-cli.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

archived-uses

release-cli.yml:78: action or reusable workflow from archived repository: repository is archived
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -86,7 +86,7 @@

- name: Upload Linux Release
if: env.LAST_VERSION != env.CURRENT_VERSION
uses: actions/upload-release-asset@e8f9f06c4b078e705bd2ea027f0926603fc9b4d5 # v1

Check warning on line 89 in .github/workflows/release-cli.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

archived-uses

release-cli.yml:89: action or reusable workflow from archived repository: repository is archived
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -97,7 +97,7 @@

- name: Upload Darwin Release
if: env.LAST_VERSION != env.CURRENT_VERSION
uses: actions/upload-release-asset@e8f9f06c4b078e705bd2ea027f0926603fc9b4d5 # v1

Check warning on line 100 in .github/workflows/release-cli.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

archived-uses

release-cli.yml:100: action or reusable workflow from archived repository: repository is archived
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -108,7 +108,7 @@

- name: Upload Windows Release
if: env.LAST_VERSION != env.CURRENT_VERSION
uses: actions/upload-release-asset@e8f9f06c4b078e705bd2ea027f0926603fc9b4d5 # v1

Check warning on line 111 in .github/workflows/release-cli.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

archived-uses

release-cli.yml:111: action or reusable workflow from archived repository: repository is archived
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-tflint-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: 'tflint-ruleset-blueprint/go.mod'
- run: echo "GORELEASER_CURRENT_TAG=${GITHUB_REF#refs/tags/tflint-ruleset-blueprint/}" >> $GITHUB_ENV
- run: echo "${{env.GORELEASER_CURRENT_TAG}}"

Check failure on line 26 in .github/workflows/release-tflint-plugin.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/template-injection

code injection via template expansion: may expand into attacker-controllable code

Check failure on line 26 in .github/workflows/release-tflint-plugin.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

template-injection

release-tflint-plugin.yml:26: code injection via template expansion: may expand into attacker-controllable code
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@f06c13b6b1a9625abc9e6e439d9c05a8f2190e94 # v7.2.3
with:
Expand All @@ -34,6 +34,6 @@
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: upload
run: |
gh release upload "tflint-ruleset-blueprint/${{env.GORELEASER_CURRENT_TAG}}" dist/tflint-ruleset-blueprint_*.zip dist/checksums.txt --repo ${{ github.repository }} --clobber

Check failure on line 37 in .github/workflows/release-tflint-plugin.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/template-injection

code injection via template expansion: may expand into attacker-controllable code

Check failure on line 37 in .github/workflows/release-tflint-plugin.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

template-injection

release-tflint-plugin.yml:37: code injection via template expansion: may expand into attacker-controllable code
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
operating-system: [ubuntu-latest]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
Expand Down
Loading