Skip to content

Commit 30c7a76

Browse files
Merge branch 'master' into claude/improve-test-names-vSDtv
2 parents 61a1b89 + b2cd699 commit 30c7a76

File tree

4 files changed

+39
-40
lines changed

4 files changed

+39
-40
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,11 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4.1.7
43-
42+
uses: actions/checkout@v6
4443

4544
# Initializes the CodeQL tools for scanning.
4645
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@v2
46+
uses: github/codeql-action/init@v4
4847
with:
4948
languages: ${{ matrix.language }}
5049
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -55,7 +54,7 @@ jobs:
5554
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5655
# If this step fails, then you should remove it and run the build manually (see below)
5756
- name: Autobuild
58-
uses: github/codeql-action/autobuild@v2
57+
uses: github/codeql-action/autobuild@v4
5958

6059
# ℹ️ Command-line programs to run using the OS shell.
6160
# 📚 https://git.io/JvXDl
@@ -69,4 +68,4 @@ jobs:
6968
# make release
7069

7170
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v2
71+
uses: github/codeql-action/analyze@v4

.github/workflows/lint-pull-request-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
name: Lint Pull Request Title
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: amannn/action-semantic-pull-request@v4.5.0
15+
- uses: amannn/action-semantic-pull-request@v6
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/nodejs.yml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4.1.7
19+
- uses: actions/checkout@v6
2020

2121
- name: Use Node.js 18
22-
uses: actions/setup-node@v4.0.3
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version: 18
2525
cache: 'npm'
@@ -38,11 +38,11 @@ jobs:
3838
fail-fast: false
3939

4040
steps:
41-
- uses: actions/checkout@v4.1.7
41+
- uses: actions/checkout@v6
4242

4343

4444
- name: Use Node.js ${{ matrix.node-version }}
45-
uses: actions/setup-node@v4.0.3
45+
uses: actions/setup-node@v6
4646
with:
4747
node-version: ${{ matrix.node-version }}
4848
cache: 'npm'
@@ -64,7 +64,7 @@ jobs:
6464
- name: run unit tests
6565
run: npx nyc --reporter=lcov npm run test
6666

67-
- uses: codecov/codecov-action@v4
67+
- uses: codecov/codecov-action@v5
6868
with:
6969
token: ${{ secrets.CODECOV_TOKEN }}
7070

@@ -73,7 +73,7 @@ jobs:
7373
TEDIOUS_TDS_VERSION: 7_4
7474
run: npx nyc --reporter=lcov npm run test-integration
7575

76-
- uses: codecov/codecov-action@v4
76+
- uses: codecov/codecov-action@v5
7777
with:
7878
token: ${{ secrets.CODECOV_TOKEN }}
7979

@@ -82,7 +82,7 @@ jobs:
8282
TEDIOUS_TDS_VERSION: 7_3_B
8383
run: npx nyc --reporter=lcov npm run test-integration
8484

85-
- uses: codecov/codecov-action@v4
85+
- uses: codecov/codecov-action@v5
8686
with:
8787
token: ${{ secrets.CODECOV_TOKEN }}
8888

@@ -91,7 +91,7 @@ jobs:
9191
TEDIOUS_TDS_VERSION: 7_3_A
9292
run: npx nyc --reporter=lcov npm run test-integration
9393

94-
- uses: codecov/codecov-action@v4
94+
- uses: codecov/codecov-action@v5
9595
with:
9696
token: ${{ secrets.CODECOV_TOKEN }}
9797

@@ -100,7 +100,7 @@ jobs:
100100
TEDIOUS_TDS_VERSION: 7_2
101101
run: npx nyc --reporter=lcov npm run test-integration
102102

103-
- uses: codecov/codecov-action@v4
103+
- uses: codecov/codecov-action@v5
104104
with:
105105
token: ${{ secrets.CODECOV_TOKEN }}
106106

@@ -109,7 +109,7 @@ jobs:
109109
TEDIOUS_TDS_VERSION: 7_1
110110
run: npx nyc --reporter=lcov npm run test-integration
111111

112-
- uses: codecov/codecov-action@v4
112+
- uses: codecov/codecov-action@v5
113113
with:
114114
token: ${{ secrets.CODECOV_TOKEN }}
115115

@@ -131,11 +131,11 @@ jobs:
131131
sqlserver-version: ${{ matrix.mssql-version }}
132132
install-updates: true
133133

134-
- uses: actions/checkout@v4.1.7
134+
- uses: actions/checkout@v6
135135

136136

137137
- name: Use Node.js ${{ matrix.node-version }}
138-
uses: actions/setup-node@v4.0.3
138+
uses: actions/setup-node@v6
139139
with:
140140
node-version: ${{ matrix.node-version }}
141141
cache: 'npm'
@@ -183,7 +183,7 @@ jobs:
183183
- name: run unit tests
184184
run: npx nyc --reporter=lcov npm run test
185185

186-
- uses: codecov/codecov-action@v4
186+
- uses: codecov/codecov-action@v5
187187
with:
188188
token: ${{ secrets.CODECOV_TOKEN }}
189189

@@ -192,7 +192,7 @@ jobs:
192192
TEDIOUS_TDS_VERSION: 7_4
193193
run: npx nyc --reporter=lcov npm run test-integration
194194

195-
- uses: codecov/codecov-action@v4
195+
- uses: codecov/codecov-action@v5
196196
with:
197197
token: ${{ secrets.CODECOV_TOKEN }}
198198

@@ -201,7 +201,7 @@ jobs:
201201
TEDIOUS_TDS_VERSION: 7_3_B
202202
run: npx nyc --reporter=lcov npm run test-integration
203203

204-
- uses: codecov/codecov-action@v4
204+
- uses: codecov/codecov-action@v5
205205
with:
206206
token: ${{ secrets.CODECOV_TOKEN }}
207207

@@ -210,7 +210,7 @@ jobs:
210210
TEDIOUS_TDS_VERSION: 7_3_A
211211
run: npx nyc --reporter=lcov npm run test-integration
212212

213-
- uses: codecov/codecov-action@v4
213+
- uses: codecov/codecov-action@v5
214214
with:
215215
token: ${{ secrets.CODECOV_TOKEN }}
216216

@@ -219,7 +219,7 @@ jobs:
219219
TEDIOUS_TDS_VERSION: 7_2
220220
run: npx nyc --reporter=lcov npm run test-integration
221221

222-
- uses: codecov/codecov-action@v4
222+
- uses: codecov/codecov-action@v5
223223
with:
224224
token: ${{ secrets.CODECOV_TOKEN }}
225225

@@ -228,7 +228,7 @@ jobs:
228228
TEDIOUS_TDS_VERSION: 7_1
229229
run: npx nyc --reporter=lcov npm run test-integration
230230

231-
- uses: codecov/codecov-action@v4
231+
- uses: codecov/codecov-action@v5
232232
with:
233233
token: ${{ secrets.CODECOV_TOKEN }}
234234

@@ -241,10 +241,10 @@ jobs:
241241
if: ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name }}
242242

243243
steps:
244-
- uses: actions/checkout@v4.1.7
244+
- uses: actions/checkout@v6
245245

246246
- name: Use Node.js 18
247-
uses: actions/setup-node@v4.0.3
247+
uses: actions/setup-node@v6
248248
with:
249249
node-version: 18
250250
cache: 'npm'
@@ -262,7 +262,7 @@ jobs:
262262
AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }}
263263
run: npx nyc --reporter=lcov npm run test-integration
264264

265-
- uses: codecov/codecov-action@v4
265+
- uses: codecov/codecov-action@v5
266266
with:
267267
token: ${{ secrets.CODECOV_TOKEN }}
268268

@@ -275,10 +275,10 @@ jobs:
275275
if: ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name }}
276276

277277
steps:
278-
- uses: actions/checkout@v4.1.7
278+
- uses: actions/checkout@v6
279279

280280
- name: Use Node.js 18
281-
uses: actions/setup-node@v4.0.3
281+
uses: actions/setup-node@v6
282282
with:
283283
node-version: 18
284284
cache: 'npm'
@@ -298,7 +298,7 @@ jobs:
298298
AZURE_AD_PASSWORD: ${{ secrets.AZURE_AD_PASSWORD }}
299299
run: npx nyc --reporter=lcov npm run test-integration
300300

301-
- uses: codecov/codecov-action@v4
301+
- uses: codecov/codecov-action@v5
302302
with:
303303
token: ${{ secrets.CODECOV_TOKEN }}
304304

@@ -311,10 +311,10 @@ jobs:
311311
if: ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name }}
312312

313313
steps:
314-
- uses: actions/checkout@v4.1.7
314+
- uses: actions/checkout@v6
315315

316316
- name: Use Node.js 18
317-
uses: actions/setup-node@v4.0.3
317+
uses: actions/setup-node@v6
318318
with:
319319
node-version: 18
320320
cache: 'npm'
@@ -334,7 +334,7 @@ jobs:
334334
AZURE_AD_PASSWORD: ${{ secrets.AZURE_AD_PASSWORD }}
335335
run: npx nyc --reporter=lcov npm run test-integration
336336

337-
- uses: codecov/codecov-action@v4
337+
- uses: codecov/codecov-action@v5
338338
with:
339339
token: ${{ secrets.CODECOV_TOKEN }}
340340

@@ -348,10 +348,10 @@ jobs:
348348
if: ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name }}
349349

350350
steps:
351-
- uses: actions/checkout@v4.1.7
351+
- uses: actions/checkout@v6
352352

353353
- name: Use Node.js 18
354-
uses: actions/setup-node@v4.0.3
354+
uses: actions/setup-node@v6
355355
with:
356356
node-version: 18
357357
cache: 'npm'
@@ -370,7 +370,7 @@ jobs:
370370
AZURE_AD_SP_CLIENT_SECRET: ${{ secrets.AZURE_AD_SP_CLIENT_SECRET }}
371371
run: npx nyc --reporter=lcov npm run test-integration
372372

373-
- uses: codecov/codecov-action@v4
373+
- uses: codecov/codecov-action@v5
374374
with:
375375
token: ${{ secrets.CODECOV_TOKEN }}
376376

@@ -387,10 +387,10 @@ jobs:
387387
id-token: write # to enable use of OIDC for npm provenance
388388

389389
steps:
390-
- uses: actions/checkout@v4.1.7
390+
- uses: actions/checkout@v6
391391

392392
- name: Use Node.js 18
393-
uses: actions/setup-node@v4.0.3
393+
uses: actions/setup-node@v6
394394
with:
395395
node-version: 18
396396
cache: 'npm'

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
name: Release
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4.1.7
16+
- uses: actions/checkout@v6
1717

1818
- name: Use Node.js 20
19-
uses: actions/setup-node@v4.0.3
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: "20"
2222
cache: 'npm'

0 commit comments

Comments
 (0)