Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Go 1.24 #481

Merged
merged 2 commits into from
Mar 6, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "^1.21.0"
go-version: "^1.24.0"
- uses: actions/checkout@v4
- name: Go Build Cache
uses: actions/cache@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version-file: '.nvmrc'
cache-dependency-path: 'web/yarn.lock'
cache: "yarn"
node-version-file: ".nvmrc"
cache-dependency-path: "web/yarn.lock"
- name: Install modules
run: yarn
working-directory: ./web
Expand All @@ -41,11 +41,11 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "^1.23.0"
go-version: "^1.24.0"
cache-dependency-path: go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v6.5.0
with:
version: v1.61.0
version: v1.64.6
- run: go version
- run: go test ./...
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ on:
- created

env:
GO_VERSION: 1.23
GO_VERSION: 1.24
WASM_API_VER: v2
PREV_GO_VERSION: 1.22
PREV_GO_VERSION: 1.23

jobs:
build:
Expand Down Expand Up @@ -73,9 +73,9 @@ jobs:

- uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version-file: '.nvmrc'
cache-dependency-path: 'web/yarn.lock'
cache: "yarn"
node-version-file: ".nvmrc"
cache-dependency-path: "web/yarn.lock"

- name: Setup dependencies
run: sudo apt-get update && sudo apt-get install -y make
Expand Down
Loading