File tree 3 files changed +8
-23
lines changed
3 files changed +8
-23
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ jobs:
24
24
25
25
steps :
26
26
- name : Checkout repository
27
- uses : actions/checkout@v3
27
+ uses : actions/checkout@v4
28
28
29
29
# Initializes the CodeQL tools for scanning.
30
30
- name : Initialize CodeQL
31
- uses : github/codeql-action/init@v2
31
+ uses : github/codeql-action/init@v3
32
32
with :
33
33
languages : ${{ matrix.language }}
34
34
# If you wish to specify custom queries, you can do so here or in a config file.
42
42
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
43
43
# If this step fails, then you should remove it and run the build manually (see below)
44
44
- name : Autobuild
45
- uses : github/codeql-action/autobuild@v2
45
+ uses : github/codeql-action/autobuild@v3
46
46
47
47
# ℹ️ Command-line programs to run using the OS shell.
48
48
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
55
55
# ./location_of_script_within_repo/buildscript.sh
56
56
57
57
- name : Perform CodeQL Analysis
58
- uses : github/codeql-action/analyze@v2
58
+ uses : github/codeql-action/analyze@v3
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
name : Test
2
- on : [push]
2
+ on : [push,pull_request ]
3
3
jobs :
4
4
test :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
7
- name : Set up Go 1.18
8
- uses : actions/setup-go@v3
8
+ uses : actions/setup-go@v4
9
9
with :
10
10
go-version : 1.18
11
11
id : go
12
12
13
13
- name : Check out code into the Go module directory
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
16
16
- name : Get dependencies
17
17
run : |
22
22
go test -v -cover -count 1 -coverprofile="./coverage.out" -covermode=atomic
23
23
ls
24
24
25
- - uses : codecov/codecov-action@v1
25
+ - uses : codecov/codecov-action@v4
26
26
with :
27
27
token : ${{ secrets.CODECOV_TOKEN }}
28
28
file : ./coverage.out
You can’t perform that action at this time.
0 commit comments