We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eadba6 commit 8419201Copy full SHA for 8419201
.github/workflows/CIBuild.yml
@@ -16,6 +16,12 @@ on:
16
branches: [ main ]
17
schedule:
18
- cron: '18 7 * * 6'
19
+ workflow_dispatch:
20
+ inputs:
21
+ environment:
22
+ description: 'Environment to run tests against'
23
+ type: environment
24
+ required: true
25
26
jobs:
27
analyze:
@@ -36,7 +42,7 @@ jobs:
36
42
37
43
# Initializes the CodeQL tools for scanning.
38
44
- name: Initialize CodeQL
39
- uses: github/codeql-action/init@v2
45
+ uses: github/codeql-action/init@v3
40
46
with:
41
47
languages: ${{ matrix.language }}
48
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -69,4 +75,4 @@ jobs:
69
75
run: xvfb-run ./gradlew build
70
76
71
77
- name: Perform CodeQL Analysis
72
- uses: github/codeql-action/analyze@v2
78
+ uses: github/codeql-action/analyze@v3
0 commit comments