Skip to content

Commit

Permalink
go version upgrade
Browse files Browse the repository at this point in the history
Signed-off-by: weilirs <[email protected]>
weilirs committed Dec 30, 2024
1 parent a30e177 commit 1ef30f2
Showing 4 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -15,13 +15,14 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.21'
go-version: '1.23'
cache: true
cache-dependency-path: go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v4.0.0
uses: golangci/golangci-lint-action@v6
with:
version: latest
skip-cache: true
- name: Run golangci-lint
run: make check
tidy:
@@ -31,7 +32,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.21'
go-version: '1.23'
cache: true
cache-dependency-path: go.sum
- name: go mod tidy
@@ -42,9 +43,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.23'
cache: true
cache-dependency-path: go.sum
- name: test
2 changes: 1 addition & 1 deletion .github/workflows/error-codes-updater.yaml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@master
with:
go-version: ${{ secrets.GO_VERSION }}
go-version: '1.23'

- name: Run utility
run: |
2 changes: 1 addition & 1 deletion build/Makefile.core.mk
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@
GIT_VERSION = $(shell git describe --tags `git rev-list --tags --max-count=1`)
GIT_COMMITSHA = $(shell git rev-list -1 HEAD)

GOVERSION = 1.19.1
GOVERSION = 1.23.4
GOPATH = $(shell go env GOPATH)
GOBIN = $(GOPATH)/bin

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/layer5io/meshkit

go 1.21
go 1.23

replace (
github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.9.3

0 comments on commit 1ef30f2

Please sign in to comment.