Skip to content

Commit

Permalink
ci: update go to 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
hbollon committed Jul 25, 2024
1 parent fbd0315 commit e2a1a53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
if: steps.check-for-backend.outputs.has-backend == 'true'
uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.22"

- name: Test backend
if: steps.check-for-backend.outputs.has-backend == 'true'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release workflow
on:
push:
tags:
- 'v*'
- "v*"

jobs:
release:
Expand All @@ -15,13 +15,13 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
node-version: "20"
cache: "yarn"

- name: Setup Go environment
uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: "1.22"

- name: Install dependencies
run: yarn install --immutable --prefer-offline
Expand Down

0 comments on commit e2a1a53

Please sign in to comment.