File tree 7 files changed +15
-28
lines changed
7 files changed +15
-28
lines changed Original file line number Diff line number Diff line change 22
22
23
23
- name : Docker meta
24
24
id : meta
25
- uses : docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
25
+ uses : docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804
26
26
with :
27
27
# list of Docker images to use as base name for tags
28
28
images : |
33
33
type=sha
34
34
35
35
- name : Set up Docker Buildx
36
- uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
36
+ uses : docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2
37
37
38
38
- name : Login to DockerHub
39
39
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
45
45
run : make build-ci
46
46
47
47
- name : Docker Publish - Main
48
- uses : docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991
48
+ uses : docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4
49
49
with :
50
50
context : .
51
51
file : ./Dockerfile.ci
Original file line number Diff line number Diff line change 22
22
23
23
- name : Docker meta
24
24
id : meta
25
- uses : docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
25
+ uses : docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804
26
26
with :
27
27
# list of Docker images to use as base name for tags
28
28
images : |
@@ -33,10 +33,10 @@ jobs:
33
33
type=sha
34
34
35
35
- name : Set up QEMU
36
- uses : docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a
36
+ uses : docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392
37
37
38
38
- name : Set up Docker Buildx
39
- uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
39
+ uses : docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2
40
40
41
41
- name : Login to DockerHub
42
42
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
48
48
run : make build-ci
49
49
50
50
- name : Docker Publish - Version Branches
51
- uses : docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991
51
+ uses : docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4
52
52
with :
53
53
context : .
54
54
file : ./Dockerfile.ci
Original file line number Diff line number Diff line change 24
24
- run : make pomerium-ui
25
25
26
26
- name : Run golangci-lint
27
- uses : golangci/golangci-lint-action@ec5d18412c0aeab7936cb16880d708ba2a64e1ae
27
+ uses : golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837
28
28
with :
29
29
version : v1.60.1
30
30
args : --timeout=10m
Original file line number Diff line number Diff line change 22
22
23
23
- name : Docker meta
24
24
id : meta
25
- uses : docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
25
+ uses : docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804
26
26
with :
27
27
images : |
28
28
pomerium/ingress-controller
32
32
type=sha
33
33
34
34
- name : Set up Docker Buildx
35
- uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
35
+ uses : docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2
36
36
37
37
- name : Login to DockerHub
38
38
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
49
49
run : make build-ci
50
50
51
51
- name : Docker Publish - Main
52
- uses : docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991
52
+ uses : docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4
53
53
with :
54
54
context : .
55
55
file : ./Dockerfile.ci
Original file line number Diff line number Diff line change @@ -43,14 +43,14 @@ jobs:
43
43
with :
44
44
fetch-depth : 0
45
45
- name : cache go binaries
46
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
46
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
47
47
id : cache-go-bin
48
48
with :
49
49
path : ~/go/bin
50
50
key : ${{ runner.os }}-${{ hashFiles('**/go.mod') }}
51
51
restore-keys : ${{ runner.os }}-go-bin
52
52
53
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
53
+ - uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
54
54
with :
55
55
path : |
56
56
~/go/pkg/mod
72
72
with :
73
73
go-version : 1.23.x
74
74
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
75
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
75
+ - uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
76
76
with :
77
77
path : |
78
78
~/go/pkg/mod
Original file line number Diff line number Diff line change 29
29
30
30
- name : Create Pull Request
31
31
if : ${{ steps.git-diff.outputs.changed }} == 'true'
32
- uses : peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f
32
+ uses : peter-evans/create-pull-request@dd2324fc52d5d43c699a5636bcf19fceaa70c284
33
33
with :
34
34
author :
GitHub Actions <[email protected] >
35
35
body : " This PR updates the Pomerium Core to the latest commit in main"
Original file line number Diff line number Diff line change 1
1
run :
2
- deadline : 20m
3
2
build-tags :
4
3
- embed_pomerium
5
4
@@ -9,8 +8,6 @@ linters-settings:
9
8
funlen :
10
9
lines : 100
11
10
statements : 50
12
- gci :
13
- local-prefixes : github.com/pomerium
14
11
goconst :
15
12
min-len : 2
16
13
min-occurrences : 2
@@ -31,16 +28,11 @@ linters-settings:
31
28
min-complexity : 15
32
29
goimports :
33
30
local-prefixes : github.com/pomerium
34
- govet :
35
- check-shadowing : false
36
31
lll :
37
32
line-length : 160
38
- maligned :
39
- suggest-new : true
40
33
misspell :
41
34
locale : US
42
35
nolintlint :
43
- allow-leading-space : true # don't require machine-readable nolint directives (i.e. with no leading space)
44
36
allow-unused : false # report any unused nolint directives
45
37
require-explanation : false # don't require an explanation for nolint directives
46
38
require-specific : false # don't require nolint directives to be specific about which linter is being skipped
@@ -157,8 +149,3 @@ issues:
157
149
- gosec
158
150
- linters : [golint]
159
151
text : " should have a package comment"
160
-
161
- # golangci.com configuration
162
- # https://github.com/golangci/golangci/wiki/Configuration
163
- service :
164
- golangci-lint-version : 1.34.x # use the fixed version to not introduce new linters unexpectedly
You can’t perform that action at this time.
0 commit comments