File tree Expand file tree Collapse file tree 10 files changed +15
-15
lines changed Expand file tree Collapse file tree 10 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 19
19
name : Generate Version List
20
20
runs-on : ubuntu-latest
21
21
steps :
22
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
22
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23
23
- id : shard
24
24
uses : ./shard
25
25
with :
42
42
versions : ${{ fromJson(needs.generate_matrix.outputs.versions) }}
43
43
steps :
44
44
- name : Checkout Repository
45
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
45
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
46
46
47
47
- name : Free Disk Space
48
48
uses : ./free-disk-space
77
77
versions : ${{ fromJson(needs.generate_matrix.outputs.versions) }}
78
78
steps :
79
79
- name : Checkout Repository
80
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
80
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
81
81
82
82
- name : Publish and Sign Image Index Manifest to oci.stackable.tech
83
83
uses : ./publish-index-manifest
Original file line number Diff line number Diff line change 9
9
pre-commit :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
12
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
13
13
with :
14
14
fetch-depth : 0
15
15
submodules : recursive
Original file line number Diff line number Diff line change 43
43
using : composite
44
44
steps :
45
45
- name : Setup Docker Buildx
46
- uses : docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6 .1
46
+ uses : docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7 .1
47
47
48
48
# TODO (@NickLarsenNZ): Allow optional buildx cache
49
49
# # Needed if you pass the --cache argument to the bake command below
Original file line number Diff line number Diff line change 34
34
using : composite
35
35
steps :
36
36
- name : Setup Docker Buildx
37
- uses : docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6 .1
37
+ uses : docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7 .1
38
38
39
39
# NOTE (@Techassi): Why do we install python via apt and not the setup-python action?
40
40
- name : Setup Python
Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ runs:
46
46
using : composite
47
47
steps :
48
48
- name : Set up Cosign
49
- uses : sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6 .0
49
+ uses : sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7 .0
50
50
51
51
- name : Set up syft
52
- uses : anchore/sbom-action/download-syft@61119d458adab75f756bc0b9e4bde25725f86a7a # v0.17.2
52
+ uses : anchore/sbom-action/download-syft@55dc4ee22412511ee8c3142cbea40418e6cec693 # v0.17.8
53
53
54
54
- name : Login to Container Registry (${{ inputs.image-registry-uri }})
55
55
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
Original file line number Diff line number Diff line change 32
32
using : composite
33
33
steps :
34
34
- name : Set up Cosign
35
- uses : sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6 .0
35
+ uses : sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7 .0
36
36
37
37
- name : Login to Container Registry (${{ inputs.image-registry-uri }})
38
38
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
Original file line number Diff line number Diff line change 99
99
- name : Prepare Replicated Cluster
100
100
if : env.KUBERNETES_DISTRIBUTION != 'ionos'
101
101
id : prepare-replicated-cluster
102
- uses : replicatedhq/replicated-actions/create-cluster@v1 # todo, hash
102
+ uses : replicatedhq/replicated-actions/create-cluster@77121785951d05387334b773644c356885191f14 # v1.16.2
103
103
with :
104
104
# See: https://github.com/replicatedhq/replicated-actions/tree/main/create-cluster#inputs
105
105
api-token : ${{ inputs.replicated-api-token }}
@@ -210,7 +210,7 @@ runs:
210
210
if : env.KUBERNETES_DISTRIBUTION != 'ionos' && always()
211
211
# If the creation of the cluster failed, we don't want to error and abort
212
212
continue-on-error : true
213
- uses : replicatedhq/replicated-actions/remove-cluster@v1 # todo, hash
213
+ uses : replicatedhq/replicated-actions/remove-cluster@77121785951d05387334b773644c356885191f14 # v1.16.2
214
214
with :
215
215
# See: https://github.com/replicatedhq/replicated-actions/tree/main/remove-cluster#inputs
216
216
api-token : ${{ inputs.replicated-api-token }}
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ runs:
21
21
using : composite
22
22
steps :
23
23
- name : Setup Python
24
- uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2 .0
24
+ uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3 .0
25
25
with :
26
26
python-version : ${{ inputs.python-version }}
27
27
28
28
- name : Setup Rust Toolchain
29
- uses : dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
29
+ uses : dtolnay/rust-toolchain@315e265cd78dad1e1dcf3a5074f6d6c47029d5aa
30
30
if : ${{ inputs.rust }}
31
31
with :
32
32
toolchain : ${{ inputs.rust }}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ outputs:
15
15
runs :
16
16
using : composite
17
17
steps :
18
- - uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2 .0
18
+ - uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3 .0
19
19
with :
20
20
python-version : ' 3.12'
21
21
Original file line number Diff line number Diff line change 1
- FROM alpine
1
+ FROM alpine@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d
2
2
3
3
RUN echo "I'm a smoke test coming from https://github.com/stackabletech/actions"
You can’t perform that action at this time.
0 commit comments