Skip to content

Commit

Permalink
Merge pull request #629 from weilirs/go-version-upgrade
Browse files Browse the repository at this point in the history
go version upgrade
  • Loading branch information
leecalcote authored Dec 30, 2024
2 parents a30e177 + 1ef30f2 commit 0343f9e
Show file tree
Hide file tree
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
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/error-codes-updater.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion build/Makefile.core.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
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
Expand Down

0 comments on commit 0343f9e

Please sign in to comment.