File tree 7 files changed +12
-12
lines changed 7 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 28
28
- name : Setup Pages
29
29
uses : actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
30
30
- name : Setup Node.js
31
- uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3 .0
31
+ uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
32
32
with :
33
33
node-version-file : website/package.json
34
34
- name : Build docs
Original file line number Diff line number Diff line change 20
20
env :
21
21
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
22
22
23
- - uses : marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1
23
+ - uses : marocchino/sticky-pull-request-comment@67d0dec7b07ed060a405f9b2a64b8ab319fdd7db # v2.9.2
24
24
# When the previous steps fail, the workflow would stop. By adding this
25
25
# condition you can continue the execution with the populated error message.
26
26
if : always() && (steps.lint_pr_title.outputs.error_message != null)
44
44
45
45
# Delete a previous comment when the issue has been resolved
46
46
- if : ${{ steps.lint_pr_title.outputs.error_message == null }}
47
- uses : marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1
47
+ uses : marocchino/sticky-pull-request-comment@67d0dec7b07ed060a405f9b2a64b8ab319fdd7db # v2.9.2
48
48
with :
49
49
header : pr-title-lint-error
50
50
delete : true
Original file line number Diff line number Diff line change 44
44
45
45
# required for Code scanning alerts
46
46
- name : " Upload SARIF results to code scanning"
47
- uses : github/codeql-action/upload-sarif@fc7e4a0fa01c3cca5fd6a1fddec5c0740c977aa2 # v3.28.14
47
+ uses : github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
48
48
with :
49
49
sarif_file : results.sarif
Original file line number Diff line number Diff line change 18
18
steps :
19
19
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20
20
- name : Setup Node.js
21
- uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3 .0
21
+ uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
22
22
with :
23
23
node-version-file : package.json
24
24
cache : yarn
@@ -140,7 +140,7 @@ jobs:
140
140
ref : ${{ github.event.pull_request.head.sha || github.sha }}
141
141
fetch-depth : 0
142
142
- name : Setup Node.js
143
- uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3 .0
143
+ uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
144
144
with :
145
145
node-version-file : package.json
146
146
registry-url : " https://npm.pkg.github.com"
Original file line number Diff line number Diff line change 28
28
with :
29
29
go-version-file : go.mod
30
30
- name : Setup Node.js
31
- uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3 .0
31
+ uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
32
32
with :
33
33
node-version-file : package.json
34
34
- name : Set up environment vars
Original file line number Diff line number Diff line change 37
37
- name : Checkout
38
38
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
39
39
- name : Setup Node.js
40
- uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3 .0
40
+ uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
41
41
with :
42
42
node-version-file : package.json
43
43
registry-url : " https://npm.pkg.github.com"
Original file line number Diff line number Diff line change 50
50
format : sarif
51
51
output : trivy-results.sarif
52
52
- name : Upload Trivy scan results to GitHub Security tab
53
- uses : github/codeql-action/upload-sarif@fc7e4a0fa01c3cca5fd6a1fddec5c0740c977aa2 # v3.28.14
53
+ uses : github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
54
54
with :
55
55
sarif_file : trivy-results.sarif
56
56
@@ -63,10 +63,10 @@ jobs:
63
63
- name : Checkout repository
64
64
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
65
65
- name : Initialize CodeQL
66
- uses : github/codeql-action/init@fc7e4a0fa01c3cca5fd6a1fddec5c0740c977aa2 # v3.28.14
66
+ uses : github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
67
67
with :
68
68
languages : go
69
69
- name : Autobuild
70
- uses : github/codeql-action/autobuild@fc7e4a0fa01c3cca5fd6a1fddec5c0740c977aa2 # v3.28.14
70
+ uses : github/codeql-action/autobuild@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
71
71
- name : Perform CodeQL Analysis
72
- uses : github/codeql-action/analyze@fc7e4a0fa01c3cca5fd6a1fddec5c0740c977aa2 # v3.28.14
72
+ uses : github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
You can’t perform that action at this time.
0 commit comments