Skip to content

Commit 15d5c61

Browse files
committed
Update cosign to v2.6.0 and go in the CI to latest version
Change-Id: I1754871a875f82fa1177793e74a41cc88ef4059f Signed-off-by: Cosmin Cojocar <[email protected]>
1 parent 7b8713e commit 15d5c61

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
strategy:
1212
matrix:
1313
version:
14-
- go-version: '1.24.6'
15-
golangci: 'latest'
16-
- go-version: '1.25.0'
17-
golangci: 'latest'
14+
- go-version: "1.24.7"
15+
golangci: "latest"
16+
- go-version: "1.25.1"
17+
golangci: "latest"
1818
runs-on: ubuntu-latest
1919
env:
2020
GO111MODULE: on
@@ -34,7 +34,7 @@ jobs:
3434
- name: lint
3535
uses: golangci/golangci-lint-action@v8
3636
with:
37-
version: ${{ matrix.version.golangci }}
37+
version: ${{ matrix.version.golangci }}
3838
- name: Run Gosec Security Scanner
3939
uses: securego/gosec@master
4040
with:
@@ -52,7 +52,7 @@ jobs:
5252
- name: Setup go
5353
uses: actions/setup-go@v6
5454
with:
55-
go-version: '1.25.1'
55+
go-version: "1.25.1"
5656
- name: Checkout Source
5757
uses: actions/checkout@v5
5858
- uses: actions/cache@v4

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release
22
on:
33
push:
44
tags:
5-
- 'v*'
5+
- "v*"
66
jobs:
77
build:
88
runs-on: ubuntu-latest
@@ -17,11 +17,11 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v6
1919
with:
20-
go-version: '1.25.1'
20+
go-version: "1.25.1"
2121
- name: Install Cosign
2222
uses: sigstore/cosign-installer@v3
2323
with:
24-
cosign-release: 'v2.5.3'
24+
cosign-release: "v2.6.0"
2525
- name: Store Cosign private key in a file
2626
run: 'echo "$COSIGN_KEY" > /tmp/cosign.key'
2727
shell: bash

0 commit comments

Comments
 (0)