File tree 1 file changed +16
-2
lines changed
1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,21 @@ jobs:
50
50
# Prefix the list here with "+" to use these queries and those in the config file.
51
51
# queries: ./path/to/local/query, your-org/your-repo/queries@main
52
52
53
+ # setup cache to speed up the action
54
+ - uses : actions/cache@v4
55
+ with :
56
+ path : |
57
+ ~/.cache/go-build
58
+ ~/.cache/pip
59
+ ~/go/pkg/mod
60
+ key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
61
+ restore-keys : |
62
+ ${{ runner.os }}-go-
63
+
53
64
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
65
# If this step fails, then you should remove it and run the build manually (see below)
55
- - name : Autobuild
56
- uses : github/codeql-action/autobuild@v3
66
+ # - name: Autobuild
67
+ # uses: github/codeql-action/autobuild@v3
57
68
58
69
# ℹ️ Command-line programs to run using the OS shell.
59
70
# 📚 https://git.io/JvXDl
66
77
# make bootstrap
67
78
# make release
68
79
80
+ - run : |
81
+ make bin/tkn
82
+
69
83
- name : Perform CodeQL Analysis
70
84
uses : github/codeql-action/analyze@v3
You can’t perform that action at this time.
0 commit comments