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/acceptance-testing-bats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0
submodules: recursive

- uses: actions/setup-go@v6.3.0
- uses: actions/setup-go@v6.4.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CI workflows can run with significant privileges; consider pinning actions/setup-go to a specific commit SHA (instead of the mutable v6.4.0 tag) to reduce supply-chain risk from tag retargeting.

Other locations where this applies: .github/workflows/acceptance-testing-e2e.yml:18, .github/workflows/acceptance-testing-e2e.yml:66, .github/workflows/unit-testing.yml:18

Severity: medium

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

with:
go-version: ${{ matrix.go }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/acceptance-testing-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Set up Go development environment
uses: actions/setup-go@v6.3.0
uses: actions/setup-go@v6.4.0
with:
go-version: '1.21.4'

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Set up Go development environment
uses: actions/setup-go@v6.3.0
uses: actions/setup-go@v6.4.0
with:
go-version: '1.21.4'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Set up Go development environment
uses: actions/setup-go@v6.3.0
uses: actions/setup-go@v6.4.0
with:
go-version: '1.21.4'

Expand Down
Loading