Skip to content

Commit ff559ca

Browse files
committed
bump go 1.24
1 parent 56e526a commit ff559ca

6 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v1
1717
with:
18-
go-version: 1.23.x
18+
go-version: 1.24.x
1919
- name: Run GoReleaser (dry run)
2020
env:
2121
PACKAGE_NAME: github.com/lets-cli/lets
22-
GOLANG_CROSS_VERSION: v1.23
22+
GOLANG_CROSS_VERSION: v1.24
2323
run: |
2424
docker run \
2525
--rm \
@@ -33,7 +33,7 @@ jobs:
3333
- name: Run GoReleaser
3434
env:
3535
PACKAGE_NAME: github.com/lets-cli/lets
36-
GOLANG_CROSS_VERSION: v1.23
36+
GOLANG_CROSS_VERSION: v1.24
3737
run: |
3838
docker run \
3939
--rm \

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup go
2323
uses: actions/setup-go@v2
2424
with:
25-
go-version: 1.23.x
25+
go-version: 1.24.x
2626
- name: Checkout code
2727
uses: actions/checkout@v2
2828
- run: go install gotest.tools/gotestsum@latest

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23-bookworm as builder
1+
FROM golang:1.24-bookworm as builder
22

33
ENV GOPROXY https://proxy.golang.org
44
ENV CGO_ENABLED 1

docs/docs/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ title: Changelog
55

66
## [Unreleased](https://github.com/lets-cli/lets/releases/tag/v0.0.X)
77

8+
* `[Dependency]` update go to `1.24`
9+
810
## [0.0.55](https://github.com/lets-cli/lets/releases/tag/v0.0.55)
911

1012
* `[Added]` `lets self` command that is ment to be a new home for all lets own commands such as `completions` (soon) or `lsp`

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/lets-cli/lets
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/codeclysm/extract v2.2.0+incompatible

lets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,4 @@ commands:
130130

131131
run-docs:
132132
work_dir: docs
133-
cmd: npm start
133+
cmd: npm start

0 commit comments

Comments
 (0)