File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ tools:
18
18
# used to sign mac binaries at release
19
19
- name : quill
20
20
version :
21
- want : v0.4.2
21
+ want : v0.5.0
22
22
method : github-release
23
23
with :
24
24
repo : anchore/quill
25
25
26
26
# used for linting
27
27
- name : golangci-lint
28
28
version :
29
- want : v1.61 .0
29
+ want : v1.62 .0
30
30
method : github-release
31
31
with :
32
32
repo : golangci/golangci-lint
58
58
# used to release all artifacts
59
59
- name : goreleaser
60
60
version :
61
- want : v2.3.2
61
+ want : v2.4.7
62
62
method : github-release
63
63
with :
64
64
repo : goreleaser/goreleaser
@@ -90,23 +90,23 @@ tools:
90
90
# used for running all local and CI tasks
91
91
- name : task
92
92
version :
93
- want : v3.39.2
93
+ want : v3.40.0
94
94
method : github-release
95
95
with :
96
96
repo : go-task/task
97
97
98
98
# used for triggering a release
99
99
- name : gh
100
100
version :
101
- want : v2.60.1
101
+ want : v2.62.0
102
102
method : github-release
103
103
with :
104
104
repo : cli/cli
105
105
106
106
# used for integration tests
107
107
- name : skopeo
108
108
version :
109
- want : v1.16.1
109
+ want : v1.17.0
110
110
method : go-install
111
111
with :
112
112
module : github.com/containers/skopeo
Original file line number Diff line number Diff line change @@ -32,8 +32,13 @@ test_positive_snapshot_install_asset() {
32
32
arch=" amd64_v1"
33
33
fi
34
34
35
+ local_suffix=" "
36
+ if [ " ${arch} " == " arm64" ]; then
37
+ local_suffix=" _v8.0"
38
+ fi
39
+
35
40
assertFilesEqual \
36
- " $( snapshot_dir) /${os} -build_${os} _${arch} /${binary} " \
41
+ " $( snapshot_dir) /${os} -build_${os} _${arch}${local_suffix} /${binary} " \
37
42
" ${expected_path} " \
38
43
" unable to verify installation of os=${os} arch=${arch} format=${format} "
39
44
You can’t perform that action at this time.
0 commit comments