Skip to content

Commit

Permalink
Build project with Go 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
der-eismann committed Aug 16, 2024
1 parent 154b63b commit 887cdd4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: CI Build

steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
- name: Checkout code
uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion examples/full/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine as builder
FROM golang:1.23-alpine as builder

RUN apk add --no-cache git openssl

Expand Down
2 changes: 1 addition & 1 deletion examples/full/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rebuy-de/rebuy-go-sdk/v8/examples/full

go 1.22.0
go 1.23.0

replace github.com/rebuy-de/rebuy-go-sdk/v8 => ../..

Expand Down
2 changes: 1 addition & 1 deletion examples/minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine as builder
FROM golang:1.23-alpine as builder

RUN apk add --no-cache git openssl

Expand Down
2 changes: 1 addition & 1 deletion examples/minimal/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rebuy-de/rebuy-go-sdk/v8/examples/minimal

go 1.22.0
go 1.23.0

replace github.com/rebuy-de/rebuy-go-sdk/v8 => ../..

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/rebuy-de/rebuy-go-sdk/v8

go 1.22.0
go 1.23.0

require (
github.com/afiskon/promtail-client v0.0.0-20190305142237-506f3f921e9c
Expand Down

0 comments on commit 887cdd4

Please sign in to comment.