File tree Expand file tree Collapse file tree 13 files changed +18
-16
lines changed
docs/examples/ci-workflows Expand file tree Collapse file tree 13 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 4848 - name : Set up Go
4949 uses : actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3.6.1
5050 with :
51- go-version : " 1.24.6 "
51+ go-version : " 1.25.0 "
5252
5353 # Initializes the CodeQL tools for scanning.
5454 - name : Initialize CodeQL
Original file line number Diff line number Diff line change @@ -26,23 +26,23 @@ jobs:
2626 steps :
2727 - uses : actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3.6.1
2828 with :
29- go-version : " 1.24.6 "
29+ go-version : " 1.25.0 "
3030
3131 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3232
3333 - name : Lint main module
3434 uses : golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # 7.0.0
3535 if : ${{ matrix.app == 'main-module' }}
3636 with :
37- version : v2.0.2
37+ version : v2.4.0
3838 only-new-issues : ' true'
3939
4040 - name : Lint ${{ matrix.app }}
4141 uses : golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # 7.0.0
4242 if : ${{ matrix.app != 'main-module' }}
4343 with :
4444 working-directory : app/${{ matrix.app }}
45- version : v2.0.2
45+ version : v2.4.0
4646 only-new-issues : ' true'
4747
4848 lint-protos :
6767
6868 - uses : actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3.6.1
6969 with :
70- go-version : " 1.24.6 "
70+ go-version : " 1.25.0 "
7171
7272 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
7373
7979 uses : golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # 7.0.0
8080 with :
8181 working-directory : extras/dagger
82- version : v2.0.2
82+ version : v2.4.0
8383 only-new-issues : ' true'
Original file line number Diff line number Diff line change 7878 - name : Set up Go
7979 uses : actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3.6.1
8080 with :
81- go-version : " 1.24.6 "
81+ go-version : " 1.25.0 "
8282
8383 # install qemu binaries for multiarch builds (needed by goreleaser/buildx)
8484 - name : Setup qemu
Original file line number Diff line number Diff line change 2727 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2828 - uses : actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3.6.1
2929 with :
30- go-version : " 1.24.6 "
30+ go-version : " 1.25.0 "
3131 cache : true
3232 cache-dependency-path : go.sum
3333
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ make migration_lint # Lint migration files
135135
136136## Key Technologies
137137
138- - ** Language** : Go 1.24.6 . To know how to upgrade go version, see docs/runbooks
138+ - ** Language** : Go 1.25.0 . To know how to upgrade go version, see docs/runbooks
139139- ** API** : gRPC with HTTP/JSON gateway, Protocol Buffers with buf
140140- ** Database** : PostgreSQL with Ent ORM, Atlas for migrations
141141- ** Authentication** : OIDC, JWT tokens
Original file line number Diff line number Diff line change 1- FROM golang:1.24.6 @sha256:2c89c41fb9efc3807029b59af69645867cfe978d2b877d475be0d72f6c6ce6f6 AS builder
1+ FROM golang:1.25.0 @sha256:9e56f0d0f043a68bb8c47c819e47dc29f6e8f5129b8885bed9d43f058f7f3ed6 AS builder
22
33# Not linked libraries since it will be injected into a scratch container
44ENV CGO_ENABLED=0
Original file line number Diff line number Diff line change 1- FROM golang:1.24.6 @sha256:2c89c41fb9efc3807029b59af69645867cfe978d2b877d475be0d72f6c6ce6f6 AS builder
1+ FROM golang:1.25.0 @sha256:9e56f0d0f043a68bb8c47c819e47dc29f6e8f5129b8885bed9d43f058f7f3ed6 AS builder
22
33FROM scratch
44
Original file line number Diff line number Diff line change 1- FROM golang:1.24.6 @sha256:2c89c41fb9efc3807029b59af69645867cfe978d2b877d475be0d72f6c6ce6f6 AS builder
1+ FROM golang:1.25.0 @sha256:9e56f0d0f043a68bb8c47c819e47dc29f6e8f5129b8885bed9d43f058f7f3ed6 AS builder
22RUN mkdir -p /.config/chainloop
33
44FROM scratch
Original file line number Diff line number Diff line change 1- FROM golang:1.24.6 @sha256:2c89c41fb9efc3807029b59af69645867cfe978d2b877d475be0d72f6c6ce6f6 AS builder
1+ FROM golang:1.25.0 @sha256:9e56f0d0f043a68bb8c47c819e47dc29f6e8f5129b8885bed9d43f058f7f3ed6 AS builder
22
33# Not linked libraries since it will be injected into a scratch container
44ENV CGO_ENABLED=0
Original file line number Diff line number Diff line change 1- FROM golang:1.24.6 @sha256:2c89c41fb9efc3807029b59af69645867cfe978d2b877d475be0d72f6c6ce6f6 AS builder
1+ FROM golang:1.25.0 @sha256:9e56f0d0f043a68bb8c47c819e47dc29f6e8f5129b8885bed9d43f058f7f3ed6 AS builder
22
33FROM scratch
44
You can’t perform that action at this time.
0 commit comments