Skip to content

Commit

Permalink
chore: Use Go 1.24 in Trunk and workflows (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint authored Feb 19, 2025
1 parent e2f3b78 commit e53f8fa
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-go-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.6
go-version: 1.24.0
cache-dependency-path: "${{ matrix.dir }}/go.sum"
- name: Run Linter
uses: golangci/golangci-lint-action@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.6
go-version: 1.24.0
cache-dependency-path: "${{ matrix.dir }}/go.sum"
- name: Run Unit Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-runtime-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.6
go-version: 1.24.0
cache-dependency-path: runtime/go.sum
- name: Build Runtime
working-directory: runtime
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-runtime-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.6
go-version: 1.24.0
cache-dependency-path: runtime/go.sum
- name: Run Integration Tests
working-directory: runtime
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-sdk-go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.6
go-version: 1.24.0
cache-dependency-path: ./sdk/go/go.sum
- name: Build Program
run: go build .
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.6
go-version: 1.24.0
cache-dependency-path: "${{ matrix.dir }}/go.sum"
- name: Setup TinyGo
uses: acifani/setup-tinygo@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
if: matrix.language == 'go'
uses: actions/setup-go@v5
with:
go-version: 1.23.6
go-version: 1.24.0
cache-dependency-path: runtime/go.sum

# Initializes the CodeQL tools for scanning.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm run build
- uses: actions/setup-go@v5
with:
go-version: 1.23.6
go-version: 1.24.0
cache-dependency-path: runtime/go.sum
- uses: goreleaser/goreleaser-action@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-sdk-go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.6
go-version: 1.24.0
cache-dependency-path: ./sdk/go/go.sum
- name: Prepare Release
working-directory: sdk/go
Expand Down
2 changes: 1 addition & 1 deletion .trunk/trunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins:
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
runtimes:
enabled:
- go@1.23.6
- go@1.24.0
- [email protected]
- [email protected]

Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
go 1.23.1

toolchain go1.23.6
toolchain go1.24.0

use (
./lib/manifest
Expand Down

0 comments on commit e53f8fa

Please sign in to comment.