Skip to content

Commit

Permalink
golang 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver006 committed Sep 9, 2024
1 parent c9c229c commit 7a1b5b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ services:

steps:
- name: start
image: golang:1.22
image: golang:1.23
pull: if-not-exists
commands:
- sleep 10
Expand Down Expand Up @@ -466,7 +466,7 @@ steps:


- name: release-github-binaries
image: golang:1.22
image: golang:1.23
pull: if-not-exists
environment:
GITHUB_TOKEN:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,13 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.23'

- name: Install Dependencies
run: go mod tidy

- name: Run tests
env:
GO111MODULE: on
LOG_LEVEL: "info"
run: |
sleep 15
Expand Down Expand Up @@ -75,7 +74,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.23'

- name: Install Dependencies
run: go mod tidy
Expand All @@ -96,7 +95,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.23'

- name: Install Dependencies
run: go mod tidy
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG GOARCH
#
# build container
#
FROM --platform=linux/amd64 golang:1.22-alpine as builder
FROM --platform=linux/amd64 golang:1.23-alpine as builder
WORKDIR /go/src/github.com/oliver006/redis_exporter/

ADD . /go/src/github.com/oliver006/redis_exporter/
Expand Down

0 comments on commit 7a1b5b1

Please sign in to comment.