You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Add any setup steps before running the `github/codeql-action/init` action.
50
-
# This includes steps like installing compilers or runtimes (`actions/setup-node`
51
-
# or others). This is typically only required for manual builds.
52
-
# - name: Setup runtime (example)
53
-
# uses: actions/setup-example@v1
54
-
55
51
# Initializes the CodeQL tools for scanning.
56
52
- name: Initialize CodeQL
57
-
uses: github/codeql-action/init@v3
53
+
uses: github/codeql-action/init@v4
58
54
with:
59
55
languages: ${{ matrix.language }}
60
56
build-mode: ${{ matrix.build-mode }}
61
-
# If you wish to specify custom queries, you can do so here or in a config file.
62
-
# By default, queries listed here will override any specified in a config file.
63
-
# Prefix the list here with "+" to use these queries and those in the config file.
64
57
65
58
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# Add any setup steps before running the `github/codeql-action/init` action.
110
-
# This includes steps like installing compilers or runtimes (`actions/setup-node`
111
-
# or others). This is typically only required for manual builds.
112
-
# - name: Setup runtime (example)
113
-
# uses: actions/setup-example@v1
102
+
- name: Setup Node.js
103
+
uses: actions/setup-node@v4
104
+
with:
105
+
node-version: '24'
114
106
115
-
- name: Setup
116
-
uses: ./.github/actions/setup
107
+
- name: Install Dependencies
108
+
run: |
109
+
yarn install
117
110
118
111
- name: Install JDK
119
112
if: env.turbo_cache_hit != 1
120
-
uses: actions/setup-java@v3
113
+
uses: actions/setup-java@v4
121
114
with:
122
115
distribution: 'zulu'
123
116
java-version: '17'
@@ -129,13 +122,10 @@ jobs:
129
122
130
123
# Initializes the CodeQL tools for scanning.
131
124
- name: Initialize CodeQL
132
-
uses: github/codeql-action/init@v3
125
+
uses: github/codeql-action/init@v4
133
126
with:
134
127
languages: ${{ matrix.language }}
135
128
build-mode: ${{ matrix.build-mode }}
136
-
# If you wish to specify custom queries, you can do so here or in a config file.
137
-
# By default, queries listed here will override any specified in a config file.
138
-
# Prefix the list here with "+" to use these queries and those in the config file.
139
129
140
130
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
0 commit comments