Skip to content

Commit 9fbd439

Browse files
authoredNov 25, 2024··
Merge pull request #122 from architkulkarni/test-linter-empty-commit
Bump github actions dependencies to match containerd CI repo and fix lint
2 parents 1c1be5e + 386f475 commit 9fbd439

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
 

‎.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 5
1515

1616
steps:
17-
- uses: actions/setup-go@v3
17+
- uses: actions/setup-go@v5
1818
with:
1919
go-version: 1.21.x
2020

@@ -24,7 +24,7 @@ jobs:
2424
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
2525
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
2626
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
with:
2929
path: src/github.com/containerd/go-cni
3030
fetch-depth: 25
@@ -48,11 +48,11 @@ jobs:
4848
os: [ubuntu-22.04]
4949

5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252
with:
5353
path: src/github.com/containerd/go-cni
5454

55-
- uses: actions/setup-go@v3
55+
- uses: actions/setup-go@v5
5656
with:
5757
go-version: ${{ matrix.go }}
5858

@@ -62,9 +62,9 @@ jobs:
6262
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
6363
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
6464
65-
- uses: golangci/golangci-lint-action@v3
65+
- uses: golangci/golangci-lint-action@v6
6666
with:
67-
version: v1.56.1
67+
version: v1.61.0
6868
working-directory: src/github.com/containerd/go-cni
6969

7070
tests:
@@ -77,11 +77,11 @@ jobs:
7777
go-version: ["1.21.8", "1.22.1"]
7878

7979
steps:
80-
- uses: actions/checkout@v3
80+
- uses: actions/checkout@v4
8181
with:
8282
path: src/github.com/containerd/go-cni
8383

84-
- uses: actions/setup-go@v3
84+
- uses: actions/setup-go@v5
8585
with:
8686
go-version: ${{ matrix.go }}
8787

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A generic CNI library to provide APIs for CNI plugin interactions. The library p
1313
- Query status of CNI network plugin initialization
1414
- Check verifies the network is still in desired state
1515

16-
go-cni aims to support plugins that implement [Container Network Interface](https://github.com/containernetworking/cni)
16+
go-cni aims to support plugins that implement the [Container Network Interface](https://github.com/containernetworking/cni).
1717

1818
## Usage
1919
```go

0 commit comments

Comments
 (0)
Please sign in to comment.