Skip to content

Commit d7543c9

Browse files
Bump default Cosign to v2.6.0 (#200)
1 parent 920f20f commit d7543c9

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

README.md

Lines changed: 8 additions & 8 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.9.2
16+
uses: sigstore/cosign-installer@v3.10.0
1717
with:
18-
cosign-release: 'v2.5.3' # optional
18+
cosign-release: 'v2.6.0' # 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.9.2
33+
uses: sigstore/cosign-installer@v3.10.0
3434
with:
35-
cosign-release: 'v2.5.3'
35+
cosign-release: 'v2.6.0'
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.9.2
52+
uses: sigstore/cosign-installer@v3.10.0
5353
- name: Check install!
5454
run: cosign version
5555
```
@@ -68,12 +68,12 @@ jobs:
6868
name: Install Cosign via go install
6969
steps:
7070
- name: Install go
71-
uses: actions/setup-go@v5.5.0
71+
uses: actions/setup-go@v6.0.0
7272
with:
7373
go-version: '1.24'
7474
check-latest: true
7575
- name: Install Cosign
76-
uses: sigstore/cosign-installer@v3.9.2
76+
uses: sigstore/cosign-installer@v3.10.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.9.2
108+
uses: sigstore/cosign-installer@v3.10.0
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.5.3'
13+
default: 'v2.6.0'
1414
install-dir:
1515
description: 'Where to install the cosign binary'
1616
required: false
@@ -81,13 +81,13 @@ runs:
8181
esac
8282
}
8383
84-
bootstrap_version='v2.5.3'
85-
bootstrap_linux_amd64_sha='783b5d6c74105401c63946c68d9b2a4e1aab3c8abce043e06b8510b02b623ec9'
86-
bootstrap_linux_arm_sha='b0c64e0e736c2b50cf4a36e113ca98a638bc7e957678c39bab40b6feae9a543b'
87-
bootstrap_linux_arm64_sha='bffabe4cf183122b7de3111257a863c99e7dc6cf1093bfd7bf961de1795589b8'
88-
bootstrap_darwin_amd64_sha='172731b1c2575dd76069a87d4d17312fd027fe0947e45e4a9ba9b915877e0ed0'
89-
bootstrap_darwin_arm64_sha='86e0cad94d0da4c0dab5e26672ede71447a08a0f0d8495b9381c117df27d7d09'
90-
bootstrap_windows_amd64_sha='545d87e096cab55e213f25b6ec5c9a74c958f72d05182cee1cd53a4eb6c2e561'
84+
bootstrap_version='v2.6.0'
85+
bootstrap_linux_amd64_sha='ea5c65f99425d6cfbb5c4b5de5dac035f14d09131c1a0ea7c7fc32eab39364f9'
86+
bootstrap_linux_arm_sha='641e05c21ce423cd263a49b1f9ffca58e2df022cb12020dcea63f8317c456950'
87+
bootstrap_linux_arm64_sha='e09684650882fd721ed22b716ffc399ee11426cd4d1c9b4fec539cba8bf46b86'
88+
bootstrap_darwin_amd64_sha='83b0fb42bc265e62aef7de49f4979b7957c9b7320d362a9f20046b2f823330f3'
89+
bootstrap_darwin_arm64_sha='dea5b83b8b375b99ac803c7bdb1f798963dbeb47789ceb72153202e7f20e8d07'
90+
bootstrap_windows_amd64_sha='7beb4dd1e19a72c328bbf7c0d7342d744edbf5cbb082f227b2b76e04a21c16ef'
9191
cosign_executable_name=cosign
9292
9393
trap "popd >/dev/null" EXIT

0 commit comments

Comments
 (0)