Skip to content

Commit

Permalink
chore(deps): update tools to latest versions (#2269)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
3 people authored Nov 20, 2024
1 parent da50cfe commit c5ddd7e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .binny.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ tools:
# used to sign mac binaries at release
- name: quill
version:
want: v0.4.2
want: v0.5.0
method: github-release
with:
repo: anchore/quill

# used for linting
- name: golangci-lint
version:
want: v1.61.0
want: v1.62.0
method: github-release
with:
repo: golangci/golangci-lint
Expand Down Expand Up @@ -58,7 +58,7 @@ tools:
# used to release all artifacts
- name: goreleaser
version:
want: v2.3.2
want: v2.4.7
method: github-release
with:
repo: goreleaser/goreleaser
Expand Down Expand Up @@ -90,23 +90,23 @@ tools:
# used for running all local and CI tasks
- name: task
version:
want: v3.39.2
want: v3.40.0
method: github-release
with:
repo: go-task/task

# used for triggering a release
- name: gh
version:
want: v2.60.1
want: v2.62.0
method: github-release
with:
repo: cli/cli

# used for integration tests
- name: skopeo
version:
want: v1.16.1
want: v1.17.0
method: go-install
with:
module: github.com/containers/skopeo
Expand Down
7 changes: 6 additions & 1 deletion test/install/3_install_asset_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,13 @@ test_positive_snapshot_install_asset() {
arch="amd64_v1"
fi

local_suffix=""
if [ "${arch}" == "arm64" ]; then
local_suffix="_v8.0"
fi

assertFilesEqual \
"$(snapshot_dir)/${os}-build_${os}_${arch}/${binary}" \
"$(snapshot_dir)/${os}-build_${os}_${arch}${local_suffix}/${binary}" \
"${expected_path}" \
"unable to verify installation of os=${os} arch=${arch} format=${format}"

Expand Down

0 comments on commit c5ddd7e

Please sign in to comment.