Skip to content

Commit 7ed8b4b

Browse files
committed
bump Go and Alpine versions in workflows and Dockerfiles
1 parent dc5c304 commit 7ed8b4b

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/docker/client/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Base
2-
FROM golang:1.21.0-alpine AS builder
2+
FROM golang:1.25.0-alpine AS builder
33
RUN apk add --no-cache git build-base gcc musl-dev
44
WORKDIR /app
55
COPY . /app
66
RUN go mod download
77
RUN go build ./cmd/interactsh-client
88

99
# Release
10-
FROM alpine:3.18.3
10+
FROM alpine:3.23.5
1111
RUN apk -U upgrade --no-cache \
1212
&& apk add --no-cache bind-tools ca-certificates
1313
COPY --from=builder /app/interactsh-client /usr/local/bin/

.github/docker/server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base
2-
FROM golang:1.21.0-alpine AS builder
2+
FROM golang:1.25.0-alpine AS builder
33
RUN apk add --no-cache git build-base gcc musl-dev
44
WORKDIR /app
55
COPY . /app
@@ -8,7 +8,7 @@ RUN go build ./cmd/interactsh-server
88

99

1010
# Release
11-
FROM alpine:3.18.3
11+
FROM alpine:3.23.5
1212
RUN apk -U upgrade --no-cache \
1313
&& apk add --no-cache bind-tools ca-certificates python3 libffi curl \
1414
&& apk add --no-cache --virtual .build-deps python3-dev py3-pip py3-wheel libffi-dev build-base \

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v4
2020
with:
21-
go-version: 1.21.x
21+
go-version: 1.25.x
2222

2323
- name: Check out code
2424
uses: actions/checkout@v3

.github/workflows/lint-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v4
1919
with:
20-
go-version: 1.21.x
20+
go-version: 1.25.x
2121
- name: Run golangci-lint
2222
uses: golangci/golangci-lint-action@v3.7.0
2323
with:

.github/workflows/release-binary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: "Set up Go"
1919
uses: actions/setup-go@v4
2020
with:
21-
go-version: 1.21.x
21+
go-version: 1.25.x
2222
- name: "Create release on GitHub"
2323
uses: goreleaser/goreleaser-action@v4
2424
with:

.github/workflows/release-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v4
2222
with:
23-
go-version: 1.21.x
23+
go-version: 1.25.x
2424

2525
- name: release test
2626
uses: goreleaser/goreleaser-action@v4

0 commit comments

Comments
 (0)