File tree Expand file tree Collapse file tree 3 files changed +7
-13
lines changed Expand file tree Collapse file tree 3 files changed +7
-13
lines changed Original file line number Diff line number Diff line change 34
34
35
35
# Initializes the CodeQL tools for scanning.
36
36
- name : Initialize CodeQL
37
- uses : github/codeql-action/init@v2
37
+ uses : github/codeql-action/init@v3
38
38
with :
39
39
languages : ${{ matrix.language }}
40
40
# If you wish to specify custom queries, you can do so here or in a config file.
45
45
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
46
46
# If this step fails, then you should remove it and run the build manually (see below)
47
47
- name : Autobuild
48
- uses : github/codeql-action/autobuild@v2
48
+ uses : github/codeql-action/autobuild@v3
49
49
50
50
# ℹ️ Command-line programs to run using the OS shell.
51
51
# 📚 https://git.io/JvXDl
59
59
# make release
60
60
61
61
- name : Perform CodeQL Analysis
62
- uses : github/codeql-action/analyze@v2
62
+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 9
9
dependabot :
10
10
runs-on : ubuntu-latest
11
11
if : ${{ github.actor == 'dependabot[bot]' }}
12
+
12
13
steps :
13
14
- name : Dependabot metadata
14
15
id : metadata
15
16
uses : dependabot/fetch-metadata@v1.6.0
16
17
with :
17
18
github-token : ' ${{ secrets.GITHUB_TOKEN }}'
18
19
19
- - name : Auto-merge Dependabot PRs for semver-minor updates
20
- if : ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
21
- run : gh pr merge --auto --merge "$PR_URL"
22
- env :
23
- PR_URL : ${{github.event.pull_request.html_url}}
24
- GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
25
-
26
- - name : Auto-merge Dependabot PRs for semver-patch updates
27
- if : ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
20
+ - name : Auto-merge Dependabot PRs for semver-minor/patch updates
21
+ if : ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
28
22
run : gh pr merge --auto --merge "$PR_URL"
29
23
env :
30
24
PR_URL : ${{github.event.pull_request.html_url}}
Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : true
16
16
matrix :
17
- node-version : [16, 18 ]
17
+ node-version : [18, 20 ]
18
18
19
19
steps :
20
20
- name : Checkout repository
You can’t perform that action at this time.
0 commit comments