Skip to content

Commit 9614fae

Browse files
authored
update action to use latest cosign v2.2.2 (#153)
Signed-off-by: cpanato <ctadeu@gmail.com>
1 parent c81cf06 commit 9614fae

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ This action currently supports GitHub-provided Linux, macOS and Windows runners
1313
Add the following entry to your Github workflow YAML file:
1414

1515
```yaml
16-
uses: sigstore/cosign-installer@v3.1.1
16+
uses: sigstore/cosign-installer@v3.3.0
1717
with:
18-
cosign-release: 'v2.1.1' # optional
18+
cosign-release: 'v2.2.2' # optional
1919
```
2020
2121
Example using a pinned version:
@@ -30,9 +30,9 @@ jobs:
3030
name: Install Cosign
3131
steps:
3232
- name: Install Cosign
33-
uses: sigstore/cosign-installer@v3.1.1
33+
uses: sigstore/cosign-installer@v3.3.0
3434
with:
35-
cosign-release: 'v2.2.1'
35+
cosign-release: 'v2.2.2'
3636
- name: Check install!
3737
run: cosign version
3838
```
@@ -49,7 +49,7 @@ jobs:
4949
name: Install Cosign
5050
steps:
5151
- name: Install Cosign
52-
uses: sigstore/cosign-installer@v3.1.1
52+
uses: sigstore/cosign-installer@v3.3.0
5353
- name: Check install!
5454
run: cosign version
5555
```
@@ -73,7 +73,7 @@ jobs:
7373
go-version: '1.21'
7474
check-latest: true
7575
- name: Install Cosign
76-
uses: sigstore/cosign-installer@v3.1.1
76+
uses: sigstore/cosign-installer@v3.3.0
7777
with:
7878
cosign-release: main
7979
- name: Check install!
@@ -105,7 +105,7 @@ jobs:
105105
fetch-depth: 1
106106
107107
- name: Install Cosign
108-
uses: sigstore/cosign-installer@v3.1.1
108+
uses: sigstore/cosign-installer@v3.3.0
109109
110110
- name: Set up QEMU
111111
uses: docker/setup-qemu-action@v2.1.0

action.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
cosign-release:
1111
description: 'cosign release version to be installed'
1212
required: false
13-
default: 'v2.2.1'
13+
default: 'v2.2.2'
1414
install-dir:
1515
description: 'Where to install the cosign binary'
1616
required: false
@@ -65,13 +65,13 @@ runs:
6565
esac
6666
}
6767
68-
bootstrap_version='v2.2.1'
69-
bootstrap_linux_amd64_sha='f6c24066e7f75221c4b7f309b8322d7d42a1d96470e0440e6e357fe43661d81f'
70-
bootstrap_linux_arm_sha='8ceaffbde4970338b51b77a4a6321348e47c7d27bd19f7f502768f8208f5b8e2'
71-
bootstrap_linux_arm64_sha='8c04e9877fb6e3a96a3916d4dfa855a493c418ace5d5ec4dba6a249490f888d1'
72-
bootstrap_darwin_amd64_sha='f1a948cded75e0858e739d90604e2a7e4d2f3fda15bfef12c0c03726567443bc'
73-
bootstrap_darwin_arm64_sha='a9ca33020c41ad245ec595c7097c9280e29e5afdd95ab19359a65d6e1a756777'
74-
bootstrap_windows_amd64_sha='88eea88aff14bc42cc00b9212b4cee7a20779836731bf83768cc1d9006cf386d'
68+
bootstrap_version='v2.2.2'
69+
bootstrap_linux_amd64_sha='121ba0031827c090364894688049651d3a0a82a87235c469322a202aa2944211'
70+
bootstrap_linux_arm_sha='46e1a98be7f1cbf8fe89ba3523a880444c2ba3cb0eea74c6ed1514b6db2555f9'
71+
bootstrap_linux_arm64_sha='82eb62be7e1b7924db193d4a4a496eca94510df2961d88406ba07fb3435f6e8f'
72+
bootstrap_darwin_amd64_sha='e3d43db982b642be15a622e3791480620f5e7f2e902ab0c9e2db21daaa36259e'
73+
bootstrap_darwin_arm64_sha='7874404ce8a9b29251ff485c6ecb46ecfebd6b1f5fa3cb6cd0b9bf2c75bab2d5'
74+
bootstrap_windows_amd64_sha='c33f389596f7763ef19674e6d5792c45d38d7b48c832955aa94eb17f12f2931e'
7575
cosign_executable_name=cosign
7676
7777
trap "popd >/dev/null" EXIT

0 commit comments

Comments
 (0)