Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.24.5
go-version: 1.24.6
- name: Get dependencies
run: curl -L --fail "https://github.com/apple/foundationdb/releases/download/${FDB_VER}/foundationdb-clients_${FDB_VER}-1_amd64.deb" -o fdb.deb
- name: Install dependencies
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.24.5
go-version: 1.24.6
- name: Fetch all tags
run: git fetch --force --tags
- name: Get dependencies
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.24.5
go-version: 1.24.6
- name: Fetch all tags
run: git fetch --force --tags
- name: Get dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.24.5
go-version: 1.24.6
# https://github.com/goreleaser/goreleaser/issues/1311
- name: Get current semver tag
run: echo "GORELEASER_CURRENT_TAG=$(git describe --tags --match "v*" --abbrev=0)" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG FDB_VERSION=7.1.67
ARG FDB_WEBSITE=https://github.com/apple/foundationdb/releases/download

# Build the manager binary
FROM docker.io/library/golang:1.24.5 AS builder
FROM docker.io/library/golang:1.24.6 AS builder

ARG FDB_VERSION
ARG FDB_WEBSITE
Expand Down Expand Up @@ -59,7 +59,7 @@ RUN groupadd --gid 4059 fdb && \
mkdir -p /var/log/fdb && \
touch /var/log/fdb/.keep

FROM docker.io/rockylinux/rockylinux:9.5-minimal
FROM docker.io/rockylinux/rockylinux:9.6-minimal

ARG FDB_VERSION
ARG FDB_WEBSITE
Expand Down