Skip to content

Commit 27e1c3f

Browse files
committed
Update CI and Dockerfile
1 parent 8c80ef2 commit 27e1c3f

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repo
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v6
1414

1515
- name: Set up Docker Buildx
16-
uses: docker/setup-buildx-action@v2
16+
uses: docker/setup-buildx-action@v4
1717

1818
- name: Login to Docker Hub
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v4
2020
with:
2121
username: ${{ secrets.DOCKER_USER }}
2222
password: ${{ secrets.DOCKER_PASSWORD }}
2323

2424
- name: Build and push
25-
uses: docker/build-push-action@v4
25+
uses: docker/build-push-action@v7
2626
with:
2727
push: true
2828
platforms: linux/amd64,linux/arm64

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Create a build image
2-
FROM golang:1.24-alpine AS build
2+
FROM golang:1.26-alpine AS build
33

44
WORKDIR /app
55

0 commit comments

Comments
 (0)