File tree Expand file tree Collapse file tree 3 files changed +21
-10
lines changed
Expand file tree Collapse file tree 3 files changed +21
-10
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
3838
3939 steps :
4040 - name : Checkout repository
41- uses : actions/checkout@v2
41+ uses : actions/checkout@v3
4242
4343 # Initializes the CodeQL tools for scanning.
4444 - name : Initialize CodeQL
45- uses : github/codeql-action/init@v1
45+ uses : github/codeql-action/init@v2
4646 with :
4747 languages : ${{ matrix.language }}
4848 # If you wish to specify custom queries, you can do so here or in a config file.
5353 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454 # If this step fails, then you should remove it and run the build manually (see below)
5555 - name : Autobuild
56- uses : github/codeql-action/autobuild@v1
56+ uses : github/codeql-action/autobuild@v2
5757
5858 # ℹ️ Command-line programs to run using the OS shell.
5959 # 📚 https://git.io/JvXDl
6767 # make release
6868
6969 - name : Perform CodeQL Analysis
70- uses : github/codeql-action/analyze@v1
70+ uses : github/codeql-action/analyze@v2
Original file line number Diff line number Diff line change 1+ name : ' Dependency Review'
2+ on : [pull_request]
3+
4+ permissions :
5+ contents : read
6+
7+ jobs :
8+ dependency-review :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : ' Checkout Repository'
12+ uses : actions/checkout@v3
13+ - name : Dependency review
14+ uses : actions/dependency-review-action@v2
15+ with :
16+ fail-on-severity : high
Original file line number Diff line number Diff line change 1313 matrix :
1414 node-version : [14, 16]
1515 steps :
16- - uses : actions/checkout@v2
16+ - uses : actions/checkout@v3
1717 - name : Node.js ${{ matrix.node-version }}
1818 uses : actions/setup-node@v2
1919 with :
3434 with :
3535 coverageCommand : yarn coverage
3636 coverageLocations : ${{ github.workspace }}/coverage/lcov.info:lcov
37- - name : Dependency review
38- if : ${{ startsWith(matrix.node-version, '16') }}
39- uses : actions/dependency-review-action@v2
40- with :
41- fail-on-severity : high
You can’t perform that action at this time.
0 commit comments