Commit bfafcdb 1 parent 3508ebd commit bfafcdb Copy full SHA for bfafcdb
File tree 5 files changed +25
-19
lines changed
5 files changed +25
-19
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,15 @@ jobs:
17
17
name : Deploy to GitHub Pages
18
18
runs-on : ubuntu-latest
19
19
steps :
20
- - uses : actions/checkout@v2
20
+ - uses : actions/checkout@v4
21
+ with :
22
+ fetch-depth : 0
21
23
22
- - uses : actions/setup-go@v3
24
+ - uses : actions/setup-go@v5
23
25
with :
24
26
go-version : " 1.21"
25
27
26
- - uses : actions/cache@v3
28
+ - uses : actions/cache@v4
27
29
with :
28
30
path : |
29
31
~/.cache/go-build
@@ -32,13 +34,13 @@ jobs:
32
34
restore-keys : |
33
35
${{ runner.os }}-golang-
34
36
35
- - uses : actions/setup-node@v3
37
+ - uses : actions/setup-node@v4
36
38
with :
37
39
node-version : 18
38
40
cache : npm
39
41
cache-dependency-path : docs/site/package-lock.json
40
42
41
- - uses : arduino/setup-task@v1
43
+ - uses : arduino/setup-task@v2
42
44
with :
43
45
version : 3.x
44
46
repo-token : ${{ secrets.GITHUB_TOKEN }} # https://github.com/arduino/setup-task#repo-token
Original file line number Diff line number Diff line change @@ -11,11 +11,13 @@ jobs:
11
11
lint :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/setup-go@v3
14
+ - uses : actions/checkout@v4
15
15
with :
16
- go-version : " 1.21 "
16
+ fetch-depth : 0
17
17
18
- - uses : actions/checkout@v3
18
+ - uses : actions/setup-go@v5
19
+ with :
20
+ go-version : " 1.21"
19
21
20
22
- name : Lint source code
21
23
uses : golangci/golangci-lint-action@v3
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ jobs:
18
18
env :
19
19
DOCKER_CONFIG : $HOME/.docker
20
20
steps :
21
- - uses : actions/checkout@v3
21
+ - uses : actions/checkout@v4
22
22
with :
23
23
fetch-depth : 0
24
24
25
- - uses : docker/login-action@v2
25
+ - uses : docker/login-action@v3
26
26
with :
27
27
registry : ghcr.io
28
28
username : ${{ github.actor }}
Original file line number Diff line number Diff line change @@ -42,23 +42,23 @@ jobs:
42
42
packages : write
43
43
pull-requests : write
44
44
steps :
45
- - uses : actions/checkout@v3
45
+ - uses : actions/checkout@v4
46
46
with :
47
47
fetch-depth : 0
48
48
49
49
- run : git fetch --force --tags
50
50
51
- - uses : docker/login-action@v2
51
+ - uses : docker/login-action@v3
52
52
with :
53
53
registry : ghcr.io
54
54
username : ${{ github.actor }}
55
55
password : ${{ secrets.GITHUB_TOKEN }}
56
56
57
- - uses : actions/setup-go@v4
57
+ - uses : actions/setup-go@v5
58
58
with :
59
59
go-version : " 1.21"
60
60
61
- - uses : actions/cache@v3
61
+ - uses : actions/cache@v4
62
62
with :
63
63
path : |
64
64
~/.cache/go-build
67
67
restore-keys : |
68
68
${{ runner.os }}-golang-
69
69
70
- - uses : goreleaser/goreleaser-action@v4
70
+ - uses : goreleaser/goreleaser-action@v5
71
71
with :
72
72
distribution : goreleaser
73
73
version : latest
Original file line number Diff line number Diff line change @@ -12,13 +12,15 @@ jobs:
12
12
name : Run tests
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
+ with :
17
+ fetch-depth : 0
16
18
17
- - uses : actions/setup-go@v3
19
+ - uses : actions/setup-go@v5
18
20
with :
19
21
go-version : " 1.21"
20
22
21
- - uses : actions/cache@v3
23
+ - uses : actions/cache@v4
22
24
with :
23
25
path : |
24
26
~/.cache/go-build
27
29
restore-keys : |
28
30
${{ runner.os }}-golang-
29
31
30
- - uses : arduino/setup-task@v1
32
+ - uses : arduino/setup-task@v2
31
33
with :
32
34
version : 3.x
33
35
repo-token : ${{ secrets.GITHUB_TOKEN }} # https://github.com/arduino/setup-task#repo-token
You can’t perform that action at this time.
0 commit comments