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
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
node-version: "22.17.x"

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'

- name: Generate code
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/compatibility-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'
id: go

- uses: actions/setup-node@v4
Expand Down Expand Up @@ -76,9 +76,9 @@ jobs:
node-version: "22.17.x"

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'
id: go

- name: Retrieve generated code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish-exp-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
node-version: "22.17.x"

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'
id: go

- uses: bufbuild/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
node-version: "22.17.x"

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'
id: go

- uses: bufbuild/[email protected]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/esti.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ jobs:

- name: Setup Go
if: steps.restore-cache.outputs.cache-hit != 'true'
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'
id: go

- name: Setup NodeJS
Expand Down Expand Up @@ -210,9 +210,9 @@ jobs:
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'
id: go

- name: Generate uniquifying value
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
node-version: "22.17.x"

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
- name: Check-out code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'
- uses: actions/setup-node@v4
with:
node-version: "22.17.x"
Expand Down Expand Up @@ -47,9 +47,9 @@ jobs:
- name: Check-out code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version-file: 'go.mod'
- name: Install Bencher
uses: bencherdev/bencher@61e6a2c2e0b4c8f61c87bef598ba9dbafa51c689 # Stable digest for v0.5.8
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ARG VERSION=dev

ARG BUILD_REPO=golang
ARG BUILD_TAG=1.24-alpine
ARG BUILD_TAG=1.25-alpine
ARG BUILD_PACKAGES="build-base ca-certificates"

ARG IMAGE_REPO=alpine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class CountedIteratorSpec extends AnyFunSpec with Matchers {

class GolangContainerSpec extends AnyFunSpec with ForAllTestContainer {
override val container: GenericContainer = GenericContainer(
"golang:1.24-alpine",
"golang:1.25-alpine",
classpathResourceMapping = Seq(
FileSystemBind("parser-test/sst_files_generator.go",
"/local/sst_files_generator.go",
Expand Down
2 changes: 1 addition & 1 deletion esti/ops/docker-compose-common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
- "host.docker.internal:host-gateway"

esti:
image: "golang:1.24-alpine"
image: "golang:1.25-alpine"
links:
- lakefs:s3.local.lakefs.io
- lakefs:testmultipartupload.s3.local.lakefs.io
Expand Down
24 changes: 12 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/treeverse/lakefs

go 1.24.4
go 1.25.5

require (
cloud.google.com/go v0.120.0 // indirect
Expand Down Expand Up @@ -44,16 +44,16 @@ require (
github.com/vbauerster/mpb/v5 v5.4.0
github.com/xitongsys/parquet-go v1.6.2
github.com/xitongsys/parquet-go-source v0.0.0-20241021075129-b732d2ac9c9b
golang.org/x/crypto v0.42.0
golang.org/x/crypto v0.46.0
golang.org/x/oauth2 v0.31.0
golang.org/x/term v0.35.0
golang.org/x/term v0.38.0
google.golang.org/api v0.234.0
google.golang.org/protobuf v1.36.9
google.golang.org/protobuf v1.36.10
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/yaml.v3 v3.0.1
)

require golang.org/x/sync v0.17.0
require golang.org/x/sync v0.19.0

require (
cloud.google.com/go/compute/metadata v0.7.0
Expand Down Expand Up @@ -124,7 +124,7 @@ require (
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/BurntSushi/toml v1.5.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.50.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.50.0 // indirect
Expand Down Expand Up @@ -266,7 +266,7 @@ require (
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.1 // indirect
github.com/opencontainers/runc v1.3.0 // indirect
github.com/opencontainers/runc v1.3.3 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.55.0 // indirect
Expand All @@ -280,11 +280,11 @@ require (
go.opencensus.io v0.24.0 // indirect
go.uber.org/atomic v1.11.0
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
golang.org/x/mod v0.27.0 // indirect
golang.org/x/net v0.43.0 // indirect
golang.org/x/sys v0.36.0 // indirect
golang.org/x/text v0.29.0 // indirect
golang.org/x/tools v0.36.0
golang.org/x/mod v0.30.0 // indirect
golang.org/x/net v0.48.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/text v0.32.0 // indirect
golang.org/x/tools v0.39.0
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
google.golang.org/genproto v0.0.0-20250505200425-f936aa4a68b2 // indirect
google.golang.org/grpc v1.72.1 // indirect
Expand Down
Loading
Loading