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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"
cache: false # We'll use custom cache for more control
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"
cache: false # We'll use custom cache for more control
Expand Down Expand Up @@ -468,7 +468,7 @@ jobs:
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"
cache: false
Expand Down Expand Up @@ -743,7 +743,7 @@ jobs:

- name: Setup Go
if: steps.should-run.outputs.run == 'true'
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"
cache: false # We'll use custom cache for more control
Expand Down Expand Up @@ -843,7 +843,7 @@ jobs:

- name: Setup Go
if: steps.should-run.outputs.run == 'true'
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"
cache: false # We'll use custom cache for more control
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/client-sdk-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: '1.25.4'
cache-dependency-path: clients/go/prism-client/go.sum
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Setup Go (for Go analysis)
if: matrix.language == 'go'
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: '1.25.4'

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/merge-queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"

Expand Down Expand Up @@ -126,7 +126,7 @@
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"

Expand All @@ -137,7 +137,7 @@
path: pkg/plugin/gen/

- name: Install golangci-lint
run: |

Check warning on line 140 in .github/workflows/merge-queue.yml

View workflow job for this annotation

GitHub Actions / Lint GitHub Actions

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2046:warning:2:17: Quote this to prevent word splitting [shellcheck] Raw Output: w:.github/workflows/merge-queue.yml:140:9: shellcheck reported issue in this script: SC2046:warning:2:17: Quote this to prevent word splitting [shellcheck]
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
| sh -s -- -b $(go env GOPATH)/bin v2.5.0

Expand Down Expand Up @@ -225,7 +225,7 @@
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"

Expand All @@ -250,7 +250,7 @@
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"

Expand Down Expand Up @@ -320,7 +320,7 @@
uses: dtolnay/rust-toolchain@stable

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"

Expand Down Expand Up @@ -110,7 +110,7 @@
path: pkg/plugin/gen/

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.25.4"
cache: true
Expand Down Expand Up @@ -455,7 +455,7 @@

- name: Generate checksums
working-directory: clients/python/dist
run: |

Check warning on line 458 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Lint GitHub Actions

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2035:info:1:11: Use ./*glob* or -- *glob* so names with dashes won't become options [shellcheck] Raw Output: i:.github/workflows/release.yml:458:9: shellcheck reported issue in this script: SC2035:info:1:11: Use ./*glob* or -- *glob* so names with dashes won't become options [shellcheck]
sha256sum * > SHA256SUMS
cat SHA256SUMS

Expand Down
Loading