Skip to content

Commit 8d4ec2a

Browse files
committed
update ci deps
1 parent e41b06c commit 8d4ec2a

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/cicd.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ on:
1414
workflow_dispatch:
1515

1616
env:
17-
GOVER: 1.20.2
17+
GOVER: 1.24.9
1818
CGO_ENABLED: 0
1919

2020
jobs:
2121
test:
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
steps:
24-
- uses: actions/checkout@v3
25-
- uses: actions/setup-go@v4
24+
- uses: actions/checkout@v6
25+
- uses: actions/setup-go@v6
2626
with:
2727
go-version: ${{ env.GOVER }}
2828
- name: Test
@@ -31,30 +31,30 @@ jobs:
3131
uses: codecov/codecov-action@v3
3232

3333
golang-ci-lint:
34-
runs-on: ubuntu-22.04
34+
runs-on: ubuntu-24.04
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v6
3838
with:
3939
fetch-depth: 0
40-
- uses: actions/setup-go@v4
40+
- uses: actions/setup-go@v6
4141
with:
4242
go-version: ${{ env.GOVER }}
4343
- name: golangci-lint
44-
uses: golangci/golangci-lint-action@v3
44+
uses: golangci/golangci-lint-action@v9
4545
with:
46-
args: --config=./.github/workflows/linters/.golangci.yml
47-
version: "v1.51.2"
46+
# args: --config=./.github/workflows/linters/.golangci.yml
47+
version: "v2"
4848

4949
release:
50-
runs-on: ubuntu-22.04
50+
runs-on: ubuntu-24.04
5151
if: startsWith(github.ref, 'refs/tags/v')
5252
needs:
5353
- golang-ci-lint
5454
- test
5555
steps:
56-
- uses: actions/checkout@v3
57-
- uses: actions/setup-go@v4
56+
- uses: actions/checkout@v6
57+
- uses: actions/setup-go@v6
5858
with:
5959
go-version: ${{ env.GOVER }}
6060

.github/workflows/linters/.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
run:
66
# running w/ 1.17 because we dont actually need/use 1.18 things and 1.18 breaks some linters.
7-
go: "1.17"
7+
go: "1.24.9"
88
timeout: 5m
99
skip-dirs:
1010
- private

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ docker tag ghcr.io/srl-labs/srl-controller:${tag} ghcr.io/srl-labs/srl-controlle
162162
docker push ghcr.io/srl-labs/srl-controller:latest
163163
```
164164

165-
Note, update the SR Linux manifest in the [KNE repo](https://github.com/openconfig/kne/) to use the new version of the controller. To generate the manifest, run:
165+
Note, update the SR Linux manifest in the [KNE repo](https://github.com/openconfig/kne/tree/main/manifests/controllers/srlinux) to use the new version of the controller. To generate the manifest, run:
166166

167167
```bash
168168
kustomize build config/default

0 commit comments

Comments
 (0)