Skip to content

Commit 59acb62

Browse files
authored
bump default version to v2.2.4, prep for v3.5.0 release (#159)
Signed-off-by: Bob Callaway <[email protected]>
1 parent 22be4ce commit 59acb62

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/test-action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Install Cosign
6666
uses: ./
6767
with:
68-
cosign-release: 'v2.2.0'
68+
cosign-release: 'v2.2.3'
6969
- name: Check install!
7070
run: cosign version
7171
- name: Check root directory

README.md

+7-7
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.3.0
16+
uses: sigstore/cosign-installer@v3.5.0
1717
with:
18-
cosign-release: 'v2.2.2' # optional
18+
cosign-release: 'v2.2.4' # 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.3.0
33+
uses: sigstore/cosign-installer@v3.5.0
3434
with:
35-
cosign-release: 'v2.2.2'
35+
cosign-release: 'v2.2.4'
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.3.0
52+
uses: sigstore/cosign-installer@v3.5.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.3.0
76+
uses: sigstore/cosign-installer@v3.5.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.4.0
108+
uses: sigstore/cosign-installer@v3.5.0
109109
110110
- name: Set up QEMU
111111
uses: docker/[email protected]

action.yml

+8-8
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.3'
13+
default: 'v2.2.4'
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.3'
69-
bootstrap_linux_amd64_sha='f669f41176cb1d58bb6a3fdb06e24861540cfdb5a571b4ec5eb2218b0df5d304'
70-
bootstrap_linux_arm_sha='cb0ace4af5cf2289dcc61659174f2d5bd0b31a938ebbd3b64b650a4fd9e346bf'
71-
bootstrap_linux_arm64_sha='b088d676f0c0123b8c348e18d421cf966020edc4977a486115a12643dea99a3f'
72-
bootstrap_darwin_amd64_sha='2429f4b027fc311a6324e9db6fb3a937d559dc61de906a1c2d0d1e0671685e4c'
73-
bootstrap_darwin_arm64_sha='3d95ab46d4c4cc55e6465758c238dc03f830cc8a1fc38bc7a33bc203e0fb2c3b'
74-
bootstrap_windows_amd64_sha='f7f272d56c580b0ec96f59bfe9f88ec5f42b6e195df009ce3417428e0e0dead1'
68+
bootstrap_version='v2.2.4'
69+
bootstrap_linux_amd64_sha='97a6a1e15668a75fc4ff7a4dc4cb2f098f929cbea2f12faa9de31db6b42b17d7'
70+
bootstrap_linux_arm_sha='ad0338117c8c97a555e48ee194f400aad56803aaa1f39f537a3ede9261bc9aa7'
71+
bootstrap_linux_arm64_sha='658087351e1d4f9c396b5f59ee5437461c06128f4ce80ba899ccaa1c0b6a8a62'
72+
bootstrap_darwin_amd64_sha='0e5a77a86115e4c00ba4243db01abceacb13cc06981c45e53ee71f2e1db8ce25'
73+
bootstrap_darwin_arm64_sha='fcd310e64ecddc1eaa13fe814ac1c9fc02f6f9eacd9a58480ab8160eb8ca381e'
74+
bootstrap_windows_amd64_sha='9e9b71bd3fa2a6abfa903b5f784d9ca0fbc29c563d2b084c1a82c593c2bab001'
7575
cosign_executable_name=cosign
7676
7777
trap "popd >/dev/null" EXIT

0 commit comments

Comments
 (0)