File tree 2 files changed +6
-8
lines changed 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,11 @@ jobs:
21
21
steps :
22
22
23
23
- name : checkout
24
- uses : actions/checkout@v2
24
+ uses : actions/checkout@v3
25
25
26
26
- name : install go ${{ matrix.go-version }}
27
- uses : actions/setup-go@v2
27
+ uses : actions/setup-go@v3
28
28
with :
29
- stable : ' !contains(${{ matrix.go-version }}, "beta") && !contains(${{ matrix.go-version }}, "rc")'
30
29
go-version : ${{ matrix.go-version }}
31
30
32
31
- name : build libseccomp ${{ matrix.libseccomp }}
Original file line number Diff line number Diff line change @@ -14,20 +14,19 @@ jobs:
14
14
lint :
15
15
runs-on : ubuntu-20.04
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v3
18
18
- name : install deps
19
19
run : |
20
20
sudo apt -q update
21
21
sudo apt -q install libseccomp-dev
22
- - uses : golangci/golangci-lint-action@v2
22
+ - uses : golangci/golangci-lint-action@v3
23
23
with :
24
- # must be specified without patch version
25
- version : v1.41
24
+ version : v1.45
26
25
27
26
codespell :
28
27
runs-on : ubuntu-20.04
29
28
steps :
30
- - uses : actions/checkout@v2
29
+ - uses : actions/checkout@v3
31
30
- name : install deps
32
31
# Version of codespell bundled with Ubuntu is way old, so use pip.
33
32
run : pip install codespell
You can’t perform that action at this time.
0 commit comments