Skip to content

Commit 350ac69

Browse files
committed
update go & github actions
1 parent 6fccf60 commit 350ac69

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
with:
1313
fetch-depth: 0
1414

1515
- name: Docker meta
1616
id: meta
17-
uses: docker/metadata-action@v4
17+
uses: docker/metadata-action@v5
1818
with:
1919
images: |
2020
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}
@@ -25,20 +25,20 @@ jobs:
2525
type=sha,prefix=
2626
2727
- name: Set up QEMU
28-
uses: docker/setup-qemu-action@v2
28+
uses: docker/setup-qemu-action@v3
2929

3030
- name: Set up Docker Buildx
31-
uses: docker/setup-buildx-action@v2
31+
uses: docker/setup-buildx-action@v3
3232

3333
- name: Login to GitHub Container Registry
34-
uses: docker/login-action@v2
34+
uses: docker/login-action@v3
3535
with:
3636
registry: ghcr.io
3737
username: ${{ github.repository_owner }}
3838
password: ${{ secrets.GITHUB_TOKEN }}
3939

4040
- name: Build and push
41-
uses: docker/build-push-action@v3
41+
uses: docker/build-push-action@v6
4242
with:
4343
context: .
4444
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM golang:1.22-alpine AS build
1+
FROM --platform=$BUILDPLATFORM golang:1.24-alpine AS build
22

33
WORKDIR /build
44

0 commit comments

Comments
 (0)