38
38
runs-on : ubuntu-latest
39
39
steps :
40
40
- name : Check out the repository
41
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
41
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
42
42
- name : Run codegen
43
43
run : make codegen
44
44
- name : Ignore go.sum changes
51
51
runs-on : ubuntu-latest
52
52
steps :
53
53
- name : Check out the repository
54
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
54
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
55
55
- name : Recreate Protobuf files
56
56
run : find pkg -name '*.pb.go' -delete -exec make {} \;
57
57
- name : Ignore go.sum changes
64
64
runs-on : ubuntu-latest
65
65
steps :
66
66
- name : Check out the repository
67
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
67
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
68
68
with :
69
69
fetch-depth : 0
70
70
- name : Run gitlint
75
75
runs-on : ubuntu-latest
76
76
steps :
77
77
- name : Check out the repository
78
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
78
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
79
79
- name : Run golangci-lint
80
80
run : make golangci-lint
81
81
84
84
runs-on : ubuntu-latest
85
85
steps :
86
86
- name : Check out the repository
87
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
87
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
88
88
89
89
- name : Check the licenses
90
90
run : make licensecheck
94
94
runs-on : ubuntu-latest
95
95
steps :
96
96
- name : Check out the repository
97
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
97
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
98
98
99
99
- name : Run markdown-link-check
100
100
uses : gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec
@@ -108,7 +108,7 @@ jobs:
108
108
runs-on : ubuntu-latest
109
109
steps :
110
110
- name : Check out the repository
111
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
111
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
112
112
- name : Run markdownlint
113
113
run : make markdownlint
114
114
@@ -117,7 +117,7 @@ jobs:
117
117
runs-on : ubuntu-latest
118
118
steps :
119
119
- name : Check out the repository
120
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
120
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
121
121
- name : Run packagedoc-lint
122
122
run : make packagedoc-lint
123
123
@@ -126,7 +126,7 @@ jobs:
126
126
runs-on : ubuntu-latest
127
127
steps :
128
128
- name : Check out the repository
129
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
129
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
130
130
- name : Run shellcheck
131
131
run : make shellcheck
132
132
@@ -135,13 +135,13 @@ jobs:
135
135
runs-on : ubuntu-latest
136
136
steps :
137
137
- name : Check out the repository
138
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
138
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
139
139
- name : Initialize CodeQL
140
- uses : github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93
140
+ uses : github/codeql-action/init@e2b3eafc8d227b0241d48be5f425d47c2d750a13
141
141
with :
142
142
languages : go
143
143
- name : Run CodeQL variant analysis
144
- uses : github/codeql-action/analyze@4dd16135b69a43b6c8efb853346f8437d92d3c93
144
+ uses : github/codeql-action/analyze@e2b3eafc8d227b0241d48be5f425d47c2d750a13
145
145
- name : Show CodeQL scan SARIF report
146
146
if : always()
147
147
run : cat ../results/go.sarif
@@ -151,7 +151,7 @@ jobs:
151
151
runs-on : ubuntu-latest
152
152
steps :
153
153
- name : Check out the repository
154
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
154
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
155
155
- name : Run Anchore vulnerability scanner
156
156
uses : anchore/scan-action@64a33b277ea7a1215a3c142735a1091341939ff5
157
157
id : scan
@@ -164,7 +164,7 @@ jobs:
164
164
run : cat ${{ steps.scan.outputs.sarif }}
165
165
- name : Upload Anchore scan SARIF report
166
166
if : always()
167
- uses : github/codeql-action/upload-sarif@4dd16135b69a43b6c8efb853346f8437d92d3c93
167
+ uses : github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13
168
168
with :
169
169
sarif_file : ${{ steps.scan.outputs.sarif }}
170
170
@@ -173,6 +173,6 @@ jobs:
173
173
runs-on : ubuntu-latest
174
174
steps :
175
175
- name : Check out the repository
176
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
176
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
177
177
- name : Run yamllint
178
178
run : make yamllint
0 commit comments