Skip to content

Commit fa2e838

Browse files
authored
chore: bump to go 1.25 (#24)
1 parent f0bf854 commit fa2e838

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/push_docker_image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out the repo
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
- name: Determine tag name
1616
run: |
1717
VERSION=$(echo $GITHUB_REF | sed -e 's,.*/\(.*\),\1,')
@@ -26,23 +26,23 @@ jobs:
2626
# Use lowercase name of repository, as buildx rejects the name otherwise.
2727
echo "repository=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@v1
29+
uses: docker/setup-buildx-action@v4
3030
- name: Cache Docker layers
31-
uses: actions/cache@v4
31+
uses: actions/cache@v5
3232
with:
3333
path: /tmp/.buildx-cache
3434
key: ${{ runner.os }}-buildx-${{ github.sha }}
3535
restore-keys: |
3636
${{ runner.os }}-buildx-
3737
- name: Login to GitHub Container Registry
38-
uses: docker/login-action@v1
38+
uses: docker/login-action@v4
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.actor }}
4242
password: ${{ secrets.GITHUB_TOKEN }}
4343
- name: Build and push
4444
id: docker_build
45-
uses: docker/build-push-action@v2
45+
uses: docker/build-push-action@v7
4646
with:
4747
push: true
4848
tags: ghcr.io/${{ env.repository }}:${{ env.tag_name }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.3-alpine3.19 as builder
1+
FROM golang:1.25-alpine as builder
22

33
# We assume only git is needed for all dependencies.
44
# openssl is already built-in.

0 commit comments

Comments
 (0)