Skip to content

Commit

Permalink
Update to Go 1.22.1 and drop armv6 support
Browse files Browse the repository at this point in the history
The golang dockerhub images recently dropped armv6 support, therefore,
no more updates for that.
  • Loading branch information
Bios-Marcel committed Mar 14, 2024
1 parent f6f2596 commit 29713ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
os: [ubuntu-latest, windows-2022]
include:
- os: ubuntu-latest
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
platforms: linux/amd64,linux/arm/v7,linux/arm64
file: linux.Dockerfile
tags: latest, ${{ github.event.workflow_run.head_branch }}
multiPlatform: true
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.0
go 1.22.1

require (
github.com/Bios-Marcel/discordemojimap/v2 v2.0.6-0.20231020161444-8c7f7fa6e5a6
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.0 AS builder
FROM docker.io/golang:1.22.1 AS builder
WORKDIR /app

# This causes caching of the downloaded go modules and makes repeated local
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.0-nanoserver-ltsc2022 AS builder
FROM docker.io/golang:1.22.1-nanoserver-ltsc2022 AS builder
WORKDIR /app

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

0 comments on commit 29713ec

Please sign in to comment.