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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Setup Go
uses: actions/setup-go@v6
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.

P2 Badge Pin setup-go to the current v6 release

This pins setup-go to v6.4.0, but the workflow previously used the floating @v6 ref, which now resolves to v6.5.0; that release includes dependency upgrades for npm audit findings. Because action refs are resolved when the workflow runs, merging this downgrades both CI and the release workflow from the version they were already running, so pin to v6.5.0 or keep @v6 instead.

Useful? React with 👍 / 👎.

with:
go-version-file: code-dispatcher/go.mod
cache: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v6.4.0
with:
go-version-file: code-dispatcher/go.mod
cache: false
Expand All @@ -43,7 +43,7 @@ jobs:
sha256sum code-dispatcher-* > SHA256SUMS

- name: Generate artifact attestations
uses: actions/attest@v4
uses: actions/attest@v4.1.0
with:
subject-path: |
dist/code-dispatcher-*
Expand Down