Skip to content

Commit fb28c2b

Browse files
authored
bump cosign install to use release v2.5.0 as default (#191)
Signed-off-by: Carlos Panato <[email protected]>
1 parent e9a05e6 commit fb28c2b

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add the following entry to your Github workflow YAML file:
1515
```yaml
1616
uses: sigstore/[email protected]
1717
with:
18-
cosign-release: 'v2.4.3' # optional
18+
cosign-release: 'v2.5.0' # optional
1919
```
2020
2121
Example using a pinned version:
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install Cosign
3333
uses: sigstore/[email protected]
3434
with:
35-
cosign-release: 'v2.4.3'
35+
cosign-release: 'v2.5.0'
3636
- name: Check install!
3737
run: cosign version
3838
```
@@ -70,7 +70,7 @@ jobs:
7070
- name: Install go
7171
uses: actions/setup-go@v5
7272
with:
73-
go-version: '1.23'
73+
go-version: '1.24'
7474
check-latest: true
7575
- name: Install Cosign
7676
uses: sigstore/[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.4.3'
13+
default: 'v2.5.0'
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.4.3'
69-
bootstrap_linux_amd64_sha='caaad125acef1cb81d58dcdc454a1e429d09a750d1e9e2b3ed1aed8964454708'
70-
bootstrap_linux_arm_sha='729d18ef31679dd2d6be1aaffcb122f31edb4ed04dedceb409e8104adf49507a'
71-
bootstrap_linux_arm64_sha='bd0f9763bca54de88699c3656ade2f39c9a1c7a2916ff35601caf23a79be0629'
72-
bootstrap_darwin_amd64_sha='98a3bfd691f42c6a5b721880116f89210d8fdff61cc0224cd3ef2f8e55a466fb'
73-
bootstrap_darwin_arm64_sha='edfc761b27ced77f0f9ca288ff4fac7caa898e1e9db38f4dfdf72160cdf8e638'
74-
bootstrap_windows_amd64_sha='a2ac24e197111c9430cb2a98f10a641164381afb83df036504868e4ea5720800'
68+
bootstrap_version='v2.5.0'
69+
bootstrap_linux_amd64_sha='1f6c194dd0891eb345b436bb71ff9f996768355f5e0ce02dde88567029ac2188'
70+
bootstrap_linux_arm_sha='9bc75f963a00957ec5ac5834ed26953fef5f05859f22e08b1655dadae24dc931'
71+
bootstrap_linux_arm64_sha='080a998f9878f22dafdb9ad54d5b2e2b8e7a38c53527250f9d89a6763a28d545'
72+
bootstrap_darwin_amd64_sha='d61cc50f6f32c2b63cb81cd8a935e5dd1be8520d639242031a1102092bee44d4'
73+
bootstrap_darwin_arm64_sha='780da3654d9601367b0d54686ac65cb9716578610cabe292d725c7008de4db85'
74+
bootstrap_windows_amd64_sha='2345667cbcf60767c1a6f678755cbb7465367761084e9d2cbb59ae0cc1a94437'
7575
cosign_executable_name=cosign
7676
7777
trap "popd >/dev/null" EXIT

0 commit comments

Comments
 (0)