File tree Expand file tree Collapse file tree 7 files changed +27
-50
lines changed Expand file tree Collapse file tree 7 files changed +27
-50
lines changed Original file line number Diff line number Diff line change @@ -22,19 +22,22 @@ inputs:
22
22
runs :
23
23
using : " composite"
24
24
steps :
25
- - uses : ./.github/actions/setup-go
25
+ - uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
26
+
26
27
- uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
27
28
with :
28
29
path : hack/tools/bin
29
30
key : ${{ runner.os }}-tools-bin-e2e-${{ hashFiles('Makefile') }}
30
31
restore-keys : |
31
32
${{ runner.os }}-tools-bin-e2e-
32
33
${{ runner.os }}-tools-bin-
34
+
33
35
- name : Download artifact
34
36
uses : actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
35
37
with :
36
38
name : test-release
37
39
path : out
40
+
38
41
- name : Install hcloud
39
42
shell : bash
40
43
env :
72
75
SKIP_IMAGE_BUILD : " 1"
73
76
CAPH_LATEST_VERSION : " v1.0.1"
74
77
run : make ${{ inputs.e2e_make_target }}
78
+
75
79
- name : Upload artifact
76
80
uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
77
81
if : ${{ !cancelled() }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ description: "Testing Release"
3
3
runs :
4
4
using : " composite"
5
5
steps :
6
- - uses : ./.github/actions/setup-go
6
+ - uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
7
+
7
8
- uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
8
9
with :
9
10
path : hack/tools/bin
24
25
env :
25
26
TAG : ${{ steps.meta.outputs.version }}
26
27
run : make test-release
28
+
27
29
- name : Upload artifact
28
30
uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
29
31
if : ${{ !cancelled() }}
Original file line number Diff line number Diff line change 31
31
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
32
32
with :
33
33
fetch-depth : 0
34
- - uses : ./.github/actions/setup-go
34
+
35
+ - uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
36
+
35
37
- name : Set up QEMU
36
38
uses : docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
39
+
37
40
- name : Set up Docker Buildx
38
41
uses : docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
39
42
Original file line number Diff line number Diff line change 22
22
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
23
23
with :
24
24
fetch-depth : 0
25
- - uses : ./.github/actions/setup-go
25
+
26
+ - uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
27
+
26
28
- name : Set up QEMU
27
29
uses : docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
30
+
28
31
- name : Set up Docker Buildx
29
32
uses : docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
30
33
@@ -128,25 +131,26 @@ jobs:
128
131
steps :
129
132
- name : Set env
130
133
run : echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
134
+
131
135
- name : checkout code
132
136
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
133
137
with :
134
138
fetch-depth : 0
135
- - name : Install go
136
- uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
137
- with :
138
- go-version-file : " go.mod"
139
- cache : true
140
- cache-dependency-path : go.sum
139
+
140
+ - uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
141
+
141
142
- name : install kustomize
142
143
run : |
143
144
make kustomize
145
+
144
146
- name : generate release artifacts
145
147
run : |
146
148
make release
149
+
147
150
- name : generate release notes
148
151
run : |
149
152
make release-notes
153
+
150
154
- name : Release
151
155
uses : softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
152
156
with :
Original file line number Diff line number Diff line change @@ -10,17 +10,13 @@ jobs:
10
10
steps :
11
11
- name : Checkout repository
12
12
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
13
+
13
14
- name : Fixup git permissions
14
15
# https://github.com/actions/checkout/issues/766
15
16
shell : bash
16
17
run : git config --global --add safe.directory "$GITHUB_WORKSPACE"
17
18
18
- - name : Install go
19
- uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
20
- with :
21
- go-version-file : " go.mod"
22
- cache : true
23
- cache-dependency-path : go.sum
19
+ - uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
24
20
25
21
- name : Create Binsize Report
26
22
run : make caph report-binsize-treemap-all
Original file line number Diff line number Diff line change 29
29
steps :
30
30
- name : Checkout repository
31
31
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32
+
32
33
- name : Coverage result name
33
34
id : name
34
35
run : |
39
40
fi
40
41
echo name=${NAME} >> $GITHUB_OUTPUT
41
42
42
- - name : Install go
43
- uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
44
- with :
45
- go-version-file : " go.mod"
43
+ - uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
46
44
47
45
- name : Install dependencies
48
46
run : make gotestsum go-cover-treemap setup-envtest
You can’t perform that action at this time.
0 commit comments