Skip to content

Commit

Permalink
update cosign to use 1.8.0 as default (#76)
Browse files Browse the repository at this point in the history
Signed-off-by: cpanato <ctadeu@gmail.com>
  • Loading branch information
cpanato committed Apr 27, 2022
1 parent 61420c1 commit 536b37e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
7 changes: 4 additions & 3 deletions README.md
Expand Up @@ -15,7 +15,7 @@ Add the following entry to your Github workflow YAML file:
```yaml
uses: sigstore/cosign-installer@main
with:
cosign-release: 'v1.7.2' # optional
cosign-release: 'v1.8.0' # optional
```

Example using a pinned version:
Expand Down Expand Up @@ -68,9 +68,10 @@ jobs:
name: Install Cosign via go install
steps:
- name: Install go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '1.17.x'
go-version: 1.17
check-latest: true
- name: Install Cosign
uses: sigstore/cosign-installer@main
with:
Expand Down
16 changes: 8 additions & 8 deletions action.yml
Expand Up @@ -10,7 +10,7 @@ inputs:
cosign-release:
description: 'cosign release version to be installed'
required: false
default: 'v1.7.2'
default: 'v1.8.0'
install-dir:
description: 'Where to install the cosign binary'
required: false
Expand Down Expand Up @@ -61,13 +61,13 @@ runs:
esac
}
bootstrap_version='v1.7.2'
bootstrap_linux_amd64_sha='80f80f3ef5b9ded92aa39a9dd8e028f5b942a3b6964f24c47b35e7f6e4d18907'
bootstrap_linux_arm_sha='76dd666af3a3162fe2d1ad7d5eea50f1c04cbbad6568dcd5529a37edf654a72d'
bootstrap_linux_arm64_sha='2448231e6bde13722aad7a17ac00789d187615a24c7f82739273ea589a42c94b'
bootstrap_darwin_amd64_sha='fab8f2c4f8705a4c4fd2cc97856213e1d0b86d5b1707a39edc462b9b05afe7fb'
bootstrap_darwin_arm64_sha='6dababc0001a695f03aa5a9712700d7ee1763375c5e97fc2544f11a88ebe9d5b'
bootstrap_windows_amd64_sha='c177618c5dcda93d49f337f99f5ccfbfb9b38a1194a8bb8df21ebbe7625c4bcb'
bootstrap_version='v1.8.0'
bootstrap_linux_amd64_sha='5682ad5a0262a4b51883c76d2134f036f2c5ac0b1e3ee8f37b78a45e296e09f6'
bootstrap_linux_arm_sha='3504f5ff57dc8aeba508a96e2618f800af379d370a4c86d626c5d69ff5b52237'
bootstrap_linux_arm64_sha='285da80143c84483bee92471f25b36f0310d7e28688741d37ceeec53214a183b'
bootstrap_darwin_amd64_sha='78ea0bbbbd851c7e7b407c7b784c5857709be5e680be77b44b32d7e716695b41'
bootstrap_darwin_arm64_sha='50e151ae242e663b51aa109a9d74849f3e235a8b7d33293fb80d784ffceb807f'
bootstrap_windows_amd64_sha='d274f4baa3ebd11308c8486379759c96071ae58c852078fff0e4952205d92f00'
trap "popd >/dev/null" EXIT
Expand Down

0 comments on commit 536b37e

Please sign in to comment.