From 07e0060e215b0d54c96f0f4399937ea32b625ef6 Mon Sep 17 00:00:00 2001 From: Marcel Schramm Date: Sat, 9 Nov 2024 17:39:02 +0100 Subject: [PATCH] Update to golang 1.23.3 --- .github/workflows/test-and-build.yml | 2 +- .github/workflows/test-pr.yml | 2 +- README.md | 2 +- go.mod | 2 +- linux.Dockerfile | 2 +- windows.Dockerfile | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 820e12f7..13654362 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -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 diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index 83f800d7..14a69eb2 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -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 }} diff --git a/README.md b/README.md index 58634760..9b2f10a3 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/go.mod b/go.mod index 3b0fc80d..a65dae4b 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/linux.Dockerfile b/linux.Dockerfile index fa14f24a..b181c1df 100644 --- a/linux.Dockerfile +++ b/linux.Dockerfile @@ -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 diff --git a/windows.Dockerfile b/windows.Dockerfile index 2414b7c4..9f9cb88c 100644 --- a/windows.Dockerfile +++ b/windows.Dockerfile @@ -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