Skip to content

Commit 3aaa224

Browse files
committed
Merge remote-tracking branch 'origin/master' into jonas-jonas/clientGov1.20.22
2 parents 009b00c + fe036ce commit 3aaa224

16 files changed

Lines changed: 381 additions & 699 deletions

File tree

.docker/Dockerfile-alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.20
1+
FROM alpine:3.22
22

33
RUN apk add -U --no-cache ca-certificates libssl3 libcrypto3 bash
44

.docker/Dockerfile-build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23-alpine3.20 AS builder
1+
FROM golang:1.24-alpine3.22 AS builder
22

33
RUN apk -U --no-cache add build-base git gcc bash
44

@@ -7,16 +7,16 @@ WORKDIR /go/src/github.com/ory/cli
77
ADD ./go.mod go.mod
88
ADD ./go.sum go.sum
99

10-
ENV GO111MODULE on
11-
ENV CGO_ENABLED 1
10+
ENV GO111MODULE=on
11+
ENV CGO_ENABLED=1
1212

1313
RUN go mod download
1414

1515
ADD . .
1616

1717
RUN CGO_CFLAGS="-D_LARGEFILE64_SOURCE" go build -tags sqlite,json1 -o /usr/bin/ory
1818

19-
FROM alpine:3.20
19+
FROM alpine:3.22
2020

2121
RUN apk add -U --no-cache ca-certificates bash
2222
RUN apk upgrade --no-cache libssl3 libcrypto3

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: ory/ci/checkout@master
1717
- uses: actions/setup-go@v5
1818
with:
19-
go-version: "1.23"
19+
go-version: "1.24"
2020
- uses: actions/cache@v4
2121
with:
2222
path: |

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-go@v3
1313
with:
14-
go-version: "1.23"
14+
go-version: "1.24"
1515
- run: make format
1616
- name: Indicate formatting issues
1717
run: git diff HEAD --exit-code --color

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: "1.23"
17+
go-version: "1.24"
1818
- uses: actions/setup-node@v2
1919
with:
2020
node-version: "16"
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@v2
5454
- uses: actions/setup-go@v2
5555
with:
56-
go-version: "1.23"
56+
go-version: "1.24"
5757
- uses: actions/setup-node@v2
5858
with:
5959
node-version: "16"

.golangci.yml

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
1+
version: "2"
12
linters:
3+
exclusions:
4+
generated: lax
5+
presets:
6+
- comments
7+
- common-false-positives
8+
- legacy
9+
- std-error-handling
10+
paths:
11+
- third_party$
12+
- builtin$
13+
- examples$
14+
formatters:
215
enable:
316
- goimports
4-
5-
linters-settings:
6-
goimports:
7-
local-prefixes: github.com/ory
17+
settings:
18+
goimports:
19+
local-prefixes:
20+
- github.com/ory
21+
exclusions:
22+
generated: lax
23+
paths:
24+
- third_party$
25+
- builtin$
26+
- examples$

0 commit comments

Comments
 (0)