Skip to content

Commit 6e04d22

Browse files
authored
default cosign to v2.1.1 (#137)
Signed-off-by: cpanato <[email protected]>
1 parent d130283 commit 6e04d22

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

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/[email protected].0
16+
uses: sigstore/[email protected].1
1717
with:
18-
cosign-release: 'v2.1.0' # optional
18+
cosign-release: 'v2.1.1' # 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/[email protected].0
33+
uses: sigstore/[email protected].1
3434
with:
35-
cosign-release: 'v2.1.0'
35+
cosign-release: 'v2.1.1'
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/[email protected].0
52+
uses: sigstore/[email protected].1
5353
- name: Check install!
5454
run: cosign version
5555
```
@@ -73,7 +73,7 @@ jobs:
7373
go-version: '1.20'
7474
check-latest: true
7575
- name: Install Cosign
76-
uses: sigstore/[email protected].0
76+
uses: sigstore/[email protected].1
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/[email protected].0
108+
uses: sigstore/[email protected].1
109109
110110
- name: Set up QEMU
111111
uses: docker/[email protected]

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.1.0'
13+
default: 'v2.1.1'
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.1.0'
69-
bootstrap_linux_amd64_sha='c4fef1a4c7e49ce2006493b9aa894b28be247987959698b97de771c129cce8ea'
70-
bootstrap_linux_arm_sha='baa86b94b826a09e7e76121298236b2bf3b88dd62574bd9fb89e4bdf28014ea2'
71-
bootstrap_linux_arm64_sha='f795a6903daadf764a5092599bfe6945cedd7656bef37884a3049ac1a529266c'
72-
bootstrap_darwin_amd64_sha='7ba6cf7a02a203e1978464f09551164ccacb9aefcfef8d3ec73e67af46417a91'
73-
bootstrap_darwin_arm64_sha='c8ddd323d6b714105e4b05b48beba6b4f57c552464aefd4691d018bff6b4c362'
74-
bootstrap_windows_amd64_sha='c34ac8208450bd81eed283e036ef324d76fe86b2de674ca357722ac2a9688fb5'
68+
bootstrap_version='v2.1.1'
69+
bootstrap_linux_amd64_sha='84a859fb654e2c2c0cbc6433a8195fef60bccd16b4cf412f486c2c67d4b91241'
70+
bootstrap_linux_arm_sha='eaa140eaa0490be8c2fd5ef754ad9855a91ef3f3abc49811cf214f7ef7466963'
71+
bootstrap_linux_arm64_sha='563ae4c2f03dd70a9b90e4058cdf14b3e33aa77d9dc6276ecb97473513c238f8'
72+
bootstrap_darwin_amd64_sha='5b7b4db7dbd7c19ce89d24a484627dc96fadd2632b033fe9a1f8005c29dbe84e'
73+
bootstrap_darwin_arm64_sha='4339a0af0059ddc4a7af7c218dcaaa1496948563f5915a7773aadb085a7eea0e'
74+
bootstrap_windows_amd64_sha='786b8fb477859817b4b4270a4b198ff35009fb78698eb7c479bee8d43ee81371'
7575
cosign_executable_name=cosign
7676
7777
trap "popd >/dev/null" EXIT

0 commit comments

Comments
 (0)