File tree 5 files changed +17
-21
lines changed
5 files changed +17
-21
lines changed Original file line number Diff line number Diff line change @@ -13,26 +13,22 @@ jobs:
13
13
steps :
14
14
15
15
- name : Set up Go
16
- uses : actions/setup-go@v3
16
+ uses : actions/setup-go@v5
17
17
with :
18
18
go-version : 1.17
19
19
20
20
- name : checkout
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
22
22
23
23
- name : Unit tests
24
24
run : make test
25
25
26
26
- name : Upload code coverage
27
- uses : codecov/codecov-action@v3
27
+ uses : codecov/codecov-action@v4
28
28
with :
29
29
files : cover.out
30
30
31
31
- name : golangci-lint
32
- uses : golangci/golangci-lint-action@v3
32
+ uses : golangci/golangci-lint-action@v5
33
33
with :
34
- version : v1.45.2
35
- # Optional: if set to true then the action don't cache or restore ~/go/pkg.
36
- skip-pkg-cache : true
37
- # Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
38
- skip-build-cache : true
34
+ version : v1.50.1
Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ jobs:
39
39
40
40
steps :
41
41
- name : Checkout repository
42
- uses : actions/checkout@v2
42
+ uses : actions/checkout@v4
43
43
44
44
# Initializes the CodeQL tools for scanning.
45
45
- name : Initialize CodeQL
46
- uses : github/codeql-action/init@v2
46
+ uses : github/codeql-action/init@v3
47
47
with :
48
48
languages : ${{ matrix.language }}
49
49
# If you wish to specify custom queries, you can do so here or in a config file.
54
54
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
55
55
# If this step fails, then you should remove it and run the build manually (see below)
56
56
- name : Autobuild
57
- uses : github/codeql-action/autobuild@v2
57
+ uses : github/codeql-action/autobuild@v3
58
58
59
59
# ℹ️ Command-line programs to run using the OS shell.
60
60
# 📚 https://git.io/JvXDl
68
68
# make release
69
69
70
70
- name : Perform CodeQL Analysis
71
- uses : github/codeql-action/analyze@v2
71
+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change @@ -14,18 +14,18 @@ jobs:
14
14
contents : read
15
15
packages : write
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v4
18
18
19
19
- name : Set up Go
20
- uses : actions/setup-go@v2
20
+ uses : actions/setup-go@v5
21
21
with :
22
22
go-version : 1.17
23
23
24
24
- name : Build image
25
25
run : make docker-build
26
26
27
27
- name : Login to GitHub Container Registry
28
- uses : docker/login-action@v1
28
+ uses : docker/login-action@v3
29
29
with :
30
30
registry : ghcr.io
31
31
username : ${{ github.actor }}
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ jobs:
15
15
id-token : write
16
16
steps :
17
17
- name : Configure AWS credentials
18
- uses : aws-actions/configure-aws-credentials@v1
18
+ uses : aws-actions/configure-aws-credentials@v4
19
19
with :
20
20
aws-region : us-west-2
21
21
role-to-assume : ${{ secrets.AWS_ROLE_TO_ASSUME }}
22
22
role-session-name : IntegrationTestSession
23
23
- name : Checkout code
24
- uses : actions/checkout@v2
24
+ uses : actions/checkout@v4
25
25
- name : Set up Go
26
- uses : actions/setup-go@v2
26
+ uses : actions/setup-go@v5
27
27
with :
28
28
go-version : 1.17
29
29
- name : Set up env
Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- name : Checkout main
11
- uses : actions/checkout@v2
11
+ uses : actions/checkout@v4
12
12
13
13
- name : Setup python
14
- uses : actions/setup-python@v2
14
+ uses : actions/setup-python@v5
15
15
with :
16
16
python-version : 3.x
17
17
You can’t perform that action at this time.
0 commit comments