Skip to content

Commit 398d4b0

Browse files
authored
default cosign to v2.5.2 (#194)
Signed-off-by: Carlos Panato <[email protected]>
1 parent 84f54a2 commit 398d4b0

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

README.md

Lines changed: 13 additions & 13 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.5.1' # optional
18+
cosign-release: 'v2.5.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/[email protected].0
33+
uses: sigstore/[email protected].1
3434
with:
35-
cosign-release: 'v2.5.1'
35+
cosign-release: 'v2.5.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/[email protected].0
52+
uses: sigstore/[email protected].1
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
71+
uses: actions/setup-go@v5.5.0
7272
with:
7373
go-version: '1.24'
7474
check-latest: true
7575
- name: Install Cosign
76-
uses: sigstore/cosign-installer@v3.8.1
76+
uses: sigstore/cosign-installer@v3.9.1
7777
with:
7878
cosign-release: main
7979
- name: Check install!
@@ -105,29 +105,29 @@ 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
111-
uses: docker/setup-qemu-action@v3.4.0
111+
uses: docker/setup-qemu-action@v3.6.0
112112
113113
- name: Set up Docker Buildx
114-
uses: docker/setup-buildx-action@v3.9.0
114+
uses: docker/setup-buildx-action@v3.11.1
115115
116116
- name: Login to GitHub Container Registry
117-
uses: docker/login-action@v3.3.0
117+
uses: docker/login-action@v3.4.0
118118
with:
119119
registry: ghcr.io
120120
username: ${{ github.actor }}
121121
password: ${{ secrets.GITHUB_TOKEN }}
122122
123123
- id: docker_meta
124-
uses: docker/metadata-action@v5.6.1
124+
uses: docker/metadata-action@v5.7.0
125125
with:
126126
images: ghcr.io/sigstore/sample-honk
127127
tags: type=sha,format=long
128128
129129
- name: Build and Push container images
130-
uses: docker/build-push-action@v6.14.0
130+
uses: docker/build-push-action@v6.18.0
131131
id: build-and-push
132132
with:
133133
platforms: linux/amd64,linux/arm/v7,linux/arm64

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.1'
13+
default: 'v2.5.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.5.1'
69-
bootstrap_linux_amd64_sha='d86013612a132b67a2b60bc4ae4a09dbb1cd7ddcb7491dfd54ef2cdb7cb9180c'
70-
bootstrap_linux_arm_sha='53edb3048e94feca309a724d5a07f8627d9c7a73141427e210e082c0a4ddded1'
71-
bootstrap_linux_arm64_sha='8b0acceb2dcd64eb85a90a302acf585da8734c9cf518088f2b11354012d27091'
72-
bootstrap_darwin_amd64_sha='4f66548db844c467b8dd75e94d74530f01e0e7e6ae9cd10994ff1377dc935572'
73-
bootstrap_darwin_arm64_sha='62cb81ea728acb426efb9345a9b0fca0168d85c67631dd74792441daaa0cb71a'
74-
bootstrap_windows_amd64_sha='7a2b09add2620ad618a224b7f4bd6adfa8baefa7526047c1fc0ec6c313d69cd6'
68+
bootstrap_version='v2.5.2'
69+
bootstrap_linux_amd64_sha='bcfeae05557a9f313ee4392d2f335d0ff69ebbfd232019e3736fb04999fe1734'
70+
bootstrap_linux_arm_sha='ecb5b9d8b6d7c8cec98363f0827456fa3207279e5f4690db6b4e6c77b10e45f9'
71+
bootstrap_linux_arm64_sha='2cbcea1873ad76274c3f241ef175d204654e3aac3e73e6ec4504e5227015cb0a'
72+
bootstrap_darwin_amd64_sha='0681abe20a482f4b9b3ed65b3debb8c6346591f2dc484b6bfa79609ff1318de4'
73+
bootstrap_darwin_arm64_sha='51fdc6d8da8310d72df10065a52247b6bebfe990d4c946dd9f71e17588256011'
74+
bootstrap_windows_amd64_sha='fef1c4731da9112d4cf2f6d93ae2a1551c73116a4f73fab7b0c15b38e95ff688'
7575
cosign_executable_name=cosign
7676
7777
trap "popd >/dev/null" EXIT

0 commit comments

Comments
 (0)