Skip to content

Commit

Permalink
bump go version to v1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
bnewbold committed Jan 1, 2025
1 parent c130614 commit c085223
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/golang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go tooling
uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.23"
- name: Build
run: make build
- name: Test
Expand All @@ -32,6 +32,6 @@ jobs:
- name: Set up Go tooling
uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.23"
- name: Lint
run: make lint
4 changes: 2 additions & 2 deletions cmd/beemo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# podman build -f ./cmd/beemo/Dockerfile -t beemo .

### Compile stage
FROM golang:1.22-alpine3.19 AS build-env
FROM golang:1.23-alpine3.20 AS build-env
RUN apk add --no-cache build-base make git

ADD . /dockerbuild
Expand All @@ -15,7 +15,7 @@ RUN GIT_VERSION=$(git describe --tags --long --always) && \
go build -tags timetzdata -o /beemo ./cmd/beemo

### Run stage
FROM alpine:3.19
FROM alpine:3.20

RUN apk add --no-cache --update dumb-init ca-certificates
ENTRYPOINT ["dumb-init", "--"]
Expand Down
4 changes: 2 additions & 2 deletions cmd/bigsky/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# podman build -f ./cmd/bigsky/Dockerfile -t bigsky .

### Compile stage
FROM golang:1.22-alpine3.19 AS build-env
FROM golang:1.23-alpine3.20 AS build-env
RUN apk add --no-cache build-base make git

ADD . /dockerbuild
Expand All @@ -26,7 +26,7 @@ RUN yarn install --frozen-lockfile
RUN yarn build

### Run stage
FROM alpine:3.19
FROM alpine:3.20

RUN apk add --no-cache --update dumb-init ca-certificates runit
ENTRYPOINT ["dumb-init", "--"]
Expand Down
4 changes: 2 additions & 2 deletions cmd/hepa/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# podman build -f ./cmd/hepa/Dockerfile -t hepa .

### Compile stage
FROM golang:1.22-alpine3.19 AS build-env
FROM golang:1.23-alpine3.20 AS build-env
RUN apk add --no-cache build-base make git

ADD . /dockerbuild
Expand All @@ -15,7 +15,7 @@ RUN GIT_VERSION=$(git describe --tags --long --always) && \
go build -tags timetzdata -o /hepa ./cmd/hepa

### Run stage
FROM alpine:3.19
FROM alpine:3.20

RUN apk add --no-cache --update dumb-init ca-certificates
ENTRYPOINT ["dumb-init", "--"]
Expand Down
4 changes: 2 additions & 2 deletions cmd/palomar/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# podman build -f ./cmd/palomar/Dockerfile -t palomar .

### Compile stage
FROM golang:1.22-alpine3.19 AS build-env
FROM golang:1.23-alpine3.20 AS build-env
RUN apk add --no-cache build-base make git

ADD . /dockerbuild
Expand All @@ -15,7 +15,7 @@ RUN GIT_VERSION=$(git describe --tags --long --always) && \
go build -tags timetzdata -o /palomar ./cmd/palomar

### Run stage
FROM alpine:3.19
FROM alpine:3.20

RUN apk add --no-cache --update dumb-init ca-certificates
ENTRYPOINT ["dumb-init", "--"]
Expand Down
2 changes: 1 addition & 1 deletion cmd/rainbow/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-bullseye AS build-env
FROM golang:1.23-bullseye AS build-env

ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Etc/UTC
Expand Down
2 changes: 1 addition & 1 deletion cmd/sonar/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build the Go binary
FROM golang:1.22-alpine3.19 AS builder
FROM golang:1.23-alpine3.20 AS builder

# Install SSL ca certificates.
RUN apk update && apk add --no-cache ca-certificates && update-ca-certificates
Expand Down
2 changes: 1 addition & 1 deletion cmd/supercollider/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build the Go binary
FROM golang:1.22-alpine3.18 AS builder
FROM golang:1.23-alpine3.20 AS builder

# Create a directory for the application
WORKDIR /app
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/bluesky-social/indigo

go 1.22
go 1.23

require (
contrib.go.opencensus.io/exporter/prometheus v0.4.2
Expand Down

0 comments on commit c085223

Please sign in to comment.