Skip to content

Commit

Permalink
chore(CI/CD): Bump go version to v1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
levaitamas committed Oct 31, 2024
1 parent 9d8d007 commit 609ca10
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'

- name: Download modules
run: go mod download
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'

- name: Download modules
run: go mod download
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
- name: Checkout code
uses: actions/checkout@v4
- name: Run linters
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish--add-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'

- name: Build binaries
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
- name: Download modules
run: go mod download
- name: Go install
Expand All @@ -38,7 +38,7 @@ jobs:
if: success()
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
- name: Checkout code
uses: actions/checkout@v4
- name: Calc coverage
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
###########
# BUILD
FROM golang:1.22-alpine as builder
FROM golang:1.23-alpine as builder

WORKDIR /app

Expand Down

0 comments on commit 609ca10

Please sign in to comment.