File tree 7 files changed +16
-16
lines changed
7 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 16
16
fetch-depth : 0
17
17
18
18
- name : Setup Go
19
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
19
+ uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
20
20
with :
21
21
go-version : 1.23.x
22
22
33
33
type=sha
34
34
35
35
- name : Set up Docker Buildx
36
- uses : docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349
36
+ uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
37
37
38
38
- name : Login to DockerHub
39
39
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
Original file line number Diff line number Diff line change 16
16
fetch-depth : 0
17
17
18
18
- name : Setup Go
19
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
19
+ uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
20
20
with :
21
21
go-version : 1.23.x
22
22
36
36
uses : docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf
37
37
38
38
- name : Set up Docker Buildx
39
- uses : docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349
39
+ uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
40
40
41
41
- name : Login to DockerHub
42
42
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
Original file line number Diff line number Diff line change 11
11
- name : Checkout
12
12
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
13
13
14
- - uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
14
+ - uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
15
15
with :
16
16
go-version : 1.23.x
17
17
Original file line number Diff line number Diff line change 15
15
with :
16
16
fetch-depth : 0
17
17
18
- - uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
18
+ - uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
19
19
with :
20
20
go-version : 1.22.x
21
21
cache : false
Original file line number Diff line number Diff line change 32
32
type=sha
33
33
34
34
- name : Set up Docker Buildx
35
- uses : docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349
35
+ uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
36
36
37
37
- name : Login to DockerHub
38
38
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
41
41
password : ${{ secrets.DOCKERHUB_TOKEN }}
42
42
43
43
- name : Setup Go
44
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
44
+ uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
45
45
with :
46
46
go-version : 1.23.x
47
47
Original file line number Diff line number Diff line change 15
15
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
16
16
with :
17
17
fetch-depth : 0
18
- - uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
18
+ - uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
19
19
with :
20
20
go-version : 1.23.x
21
21
- uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
34
34
test :
35
35
runs-on : ubuntu-latest
36
36
steps :
37
- - uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
37
+ - uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
38
38
with :
39
39
go-version : 1.23.x
40
40
- name : set env vars
@@ -43,14 +43,14 @@ jobs:
43
43
with :
44
44
fetch-depth : 0
45
45
- name : cache go binaries
46
- uses : actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a
46
+ uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
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@6849a6489940f00c2f30c0fb92c6274307ccb58a
53
+ - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
54
54
with :
55
55
path : |
56
56
~/go/pkg/mod
@@ -68,11 +68,11 @@ jobs:
68
68
build :
69
69
runs-on : ubuntu-latest
70
70
steps :
71
- - uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
71
+ - uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
72
72
with :
73
73
go-version : 1.23.x
74
74
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
75
- - uses : actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a
75
+ - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
76
76
with :
77
77
path : |
78
78
~/go/pkg/mod
Original file line number Diff line number Diff line change 12
12
- name : Checkout
13
13
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
14
14
- name : Setup Go
15
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
15
+ uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
16
16
with :
17
17
go-version : 1.23.x
18
18
- name : Update Core
29
29
30
30
- name : Create Pull Request
31
31
if : ${{ steps.git-diff.outputs.changed }} == 'true'
32
- uses : peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f
32
+ uses : peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f
33
33
with :
34
34
author : GitHub Actions <apparitor@users.noreply.github.com>
35
35
body : " This PR updates the Pomerium Core to the latest commit in main"
You can’t perform that action at this time.
0 commit comments