Skip to content

Commit

Permalink
Update to golang 1.23.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Bios-Marcel committed Nov 9, 2024
1 parent be74671 commit 07e0060
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
go-version: 1.23.3

- name: Run tests
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
run-tests:
strategy:
matrix:
go-version: [1.22.x]
go-version: [1.23.3]
platform: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.platform }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ container and you shouldn't have to change it under normal circumstances.
## Building / Running

Dependencies:
* [go](https://go.dev/doc/install) version 1.22 or later
* [go](https://go.dev/doc/install) version 1.23.3 or later
* [git](https://git-scm.com/) (You can also download a .zip from Github)

In order to download and build, open a terminal and execute:
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/scribble-rs/scribble.rs

go 1.22.1
go 1.23.3

require (
github.com/Bios-Marcel/discordemojimap/v2 v2.0.6
Expand Down
2 changes: 1 addition & 1 deletion linux.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# We explicitly use a certain major version of go, to make sure we don't build
# with a newer verison than we are using for CI tests, as we don't directly
# test the produced binary but from source code directly.
FROM docker.io/golang:1.22.1 AS builder
FROM docker.io/golang:1.23.3 AS builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion windows.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# We explicitly use a certain major version of go, to make sure we don't build
# with a newer verison than we are using for CI tests, as we don't directly
# test the produced binary but from source code directly.
FROM docker.io/golang:1.22.1-nanoserver-ltsc2022 AS builder
FROM docker.io/golang:1.23.3-nanoserver-ltsc2022 AS builder
WORKDIR /app

# This causes caching of the downloaded go modules and makes repeated local
Expand Down

0 comments on commit 07e0060

Please sign in to comment.