Skip to content

Commit c5ddd7e

Browse files
anchore-actions-token-generator[bot]westonsteimelwillmurphyscode
authored
chore(deps): update tools to latest versions (#2269)
* chore(deps): update tools to latest versions Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * chore: add arm64 version suffix in cli tests Signed-off-by: Will Murphy <[email protected]> --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Will Murphy <[email protected]> Co-authored-by: westonsteimel <[email protected]> Co-authored-by: Will Murphy <[email protected]>
1 parent da50cfe commit c5ddd7e

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.binny.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ tools:
1818
# used to sign mac binaries at release
1919
- name: quill
2020
version:
21-
want: v0.4.2
21+
want: v0.5.0
2222
method: github-release
2323
with:
2424
repo: anchore/quill
2525

2626
# used for linting
2727
- name: golangci-lint
2828
version:
29-
want: v1.61.0
29+
want: v1.62.0
3030
method: github-release
3131
with:
3232
repo: golangci/golangci-lint
@@ -58,7 +58,7 @@ tools:
5858
# used to release all artifacts
5959
- name: goreleaser
6060
version:
61-
want: v2.3.2
61+
want: v2.4.7
6262
method: github-release
6363
with:
6464
repo: goreleaser/goreleaser
@@ -90,23 +90,23 @@ tools:
9090
# used for running all local and CI tasks
9191
- name: task
9292
version:
93-
want: v3.39.2
93+
want: v3.40.0
9494
method: github-release
9595
with:
9696
repo: go-task/task
9797

9898
# used for triggering a release
9999
- name: gh
100100
version:
101-
want: v2.60.1
101+
want: v2.62.0
102102
method: github-release
103103
with:
104104
repo: cli/cli
105105

106106
# used for integration tests
107107
- name: skopeo
108108
version:
109-
want: v1.16.1
109+
want: v1.17.0
110110
method: go-install
111111
with:
112112
module: github.com/containers/skopeo

test/install/3_install_asset_test.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,13 @@ test_positive_snapshot_install_asset() {
3232
arch="amd64_v1"
3333
fi
3434

35+
local_suffix=""
36+
if [ "${arch}" == "arm64" ]; then
37+
local_suffix="_v8.0"
38+
fi
39+
3540
assertFilesEqual \
36-
"$(snapshot_dir)/${os}-build_${os}_${arch}/${binary}" \
41+
"$(snapshot_dir)/${os}-build_${os}_${arch}${local_suffix}/${binary}" \
3742
"${expected_path}" \
3843
"unable to verify installation of os=${os} arch=${arch} format=${format}"
3944

0 commit comments

Comments
 (0)