Skip to content

Commit 2543d54

Browse files
committed
need go 1.25 for docker build
1 parent 41211af commit 2543d54

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
base: ${{ github.ref }}
3838
filters: .github/filters.yml
3939

40-
build-test:
40+
build:
4141
runs-on: ubuntu-latest
4242
needs: changes
4343
if: ${{ contains(fromJSON(needs.changes.outputs.paths), 'src') }}
@@ -83,6 +83,8 @@ jobs:
8383

8484
docker-build:
8585
runs-on: ubuntu-latest
86+
needs: changes
87+
if: ${{ contains(fromJSON(needs.changes.outputs.paths), 'src') }}
8688
steps:
8789
- uses: actions/checkout@v5
8890
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24-alpine AS builder
1+
FROM golang:1.25-alpine AS builder
22
RUN mkdir -p /linode
33
WORKDIR /linode
44

0 commit comments

Comments
 (0)