Skip to content

Commit 9d93f3b

Browse files
authored
Update the go and the Rocky version (#2346)
1 parent 7845c84 commit 9d93f3b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pull_request.yml

Lines changed: 3 additions & 3 deletions
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.24.5
21+
go-version: 1.24.6
2222
- name: Get dependencies
2323
run: curl -L --fail "https://github.com/apple/foundationdb/releases/download/${FDB_VER}/foundationdb-clients_${FDB_VER}-1_amd64.deb" -o fdb.deb
2424
- name: Install dependencies
@@ -42,7 +42,7 @@ jobs:
4242
- name: Set up Go
4343
uses: actions/setup-go@v4
4444
with:
45-
go-version: 1.24.5
45+
go-version: 1.24.6
4646
- name: Fetch all tags
4747
run: git fetch --force --tags
4848
- name: Get dependencies
@@ -101,7 +101,7 @@ jobs:
101101
- name: Set up Go
102102
uses: actions/setup-go@v4
103103
with:
104-
go-version: 1.24.5
104+
go-version: 1.24.6
105105
- name: Fetch all tags
106106
run: git fetch --force --tags
107107
- name: Get dependencies

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up Go
4444
uses: actions/setup-go@v4
4545
with:
46-
go-version: 1.24.5
46+
go-version: 1.24.6
4747
# https://github.com/goreleaser/goreleaser/issues/1311
4848
- name: Get current semver tag
4949
run: echo "GORELEASER_CURRENT_TAG=$(git describe --tags --match "v*" --abbrev=0)" >> $GITHUB_ENV

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG FDB_VERSION=7.1.67
44
ARG FDB_WEBSITE=https://github.com/apple/foundationdb/releases/download
55

66
# Build the manager binary
7-
FROM docker.io/library/golang:1.24.5 AS builder
7+
FROM docker.io/library/golang:1.24.6 AS builder
88

99
ARG FDB_VERSION
1010
ARG FDB_WEBSITE
@@ -59,7 +59,7 @@ RUN groupadd --gid 4059 fdb && \
5959
mkdir -p /var/log/fdb && \
6060
touch /var/log/fdb/.keep
6161

62-
FROM docker.io/rockylinux/rockylinux:9.5-minimal
62+
FROM docker.io/rockylinux/rockylinux:9.6-minimal
6363

6464
ARG FDB_VERSION
6565
ARG FDB_WEBSITE

0 commit comments

Comments
 (0)