File tree Expand file tree Collapse file tree 5 files changed +23
-23
lines changed Expand file tree Collapse file tree 5 files changed +23
-23
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
38
38
39
39
steps :
40
40
- name : Checkout repository
41
- uses : actions/checkout@v3
41
+ uses : actions/checkout@v4
42
42
43
43
# Initializes the CodeQL tools for scanning.
44
44
- name : Initialize CodeQL
45
- uses : github/codeql-action/init@v2
45
+ uses : github/codeql-action/init@v3
46
46
with :
47
47
languages : ${{ matrix.language }}
48
48
# If you wish to specify custom queries, you can do so here or in a config file.
53
53
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
54
# If this step fails, then you should remove it and run the build manually (see below)
55
55
- name : Autobuild
56
- uses : github/codeql-action/autobuild@v2
56
+ uses : github/codeql-action/autobuild@v3
57
57
58
58
# ℹ️ Command-line programs to run using the OS shell.
59
59
# 📚 https://git.io/JvXDl
67
67
# make release
68
68
69
69
- name : Perform CodeQL Analysis
70
- uses : github/codeql-action/analyze@v2
70
+ uses : github/codeql-action/analyze@v3
71
71
continue-on-error : true
Original file line number Diff line number Diff line change 8
8
publish :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v3
12
- - uses : actions/setup-node@v3
11
+ - uses : actions/checkout@v4
12
+ - uses : actions/setup-node@v4
13
13
with :
14
- node-version : 20
14
+ node-version-file : .nvmrc
15
15
registry-url : https://registry.npmjs.org/
16
16
always-auth : true
17
17
- run : yarn install --frozen-lockfile
Original file line number Diff line number Diff line change @@ -11,25 +11,25 @@ jobs:
11
11
runs-on : ${{ matrix.os }}
12
12
strategy :
13
13
matrix :
14
- os : [windows-2019 , windows-2022 ]
14
+ os : [windows-2022 , windows-2025 ]
15
15
browser : [chromium, firefox]
16
16
steps :
17
- - uses : actions/checkout@v3
18
- - uses : actions/setup-node@v3
17
+ - uses : actions/checkout@v4
18
+ - uses : actions/setup-node@v4
19
19
with :
20
- node-version : 20
20
+ node-version-file : .nvmrc
21
21
- name : Guidepup Setup
22
- uses : guidepup/setup-action@0.17.2
22
+ uses : guidepup/setup-action@0.17.3
23
23
with :
24
24
record : true
25
25
- run : yarn install --frozen-lockfile
26
26
- run : yarn pretest
27
27
- run : yarn test:nvda:${{ matrix.browser }}
28
- - uses : actions/upload-artifact@v3
28
+ - uses : actions/upload-artifact@v4
29
29
if : always()
30
30
continue-on-error : true
31
31
with :
32
- name : artifacts
32
+ name : artifacts-${{ matrix.os }}-${{ matrix.browser }}
33
33
path : |
34
34
**/test-results/**/*
35
35
**/recordings/**/*
Original file line number Diff line number Diff line change @@ -14,22 +14,22 @@ jobs:
14
14
os : [macos-12, macos-13, macos-14]
15
15
browser : [chromium, firefox, webkit]
16
16
steps :
17
- - uses : actions/checkout@v3
18
- - uses : actions/setup-node@v3
17
+ - uses : actions/checkout@v4
18
+ - uses : actions/setup-node@v4
19
19
with :
20
- node-version : 20
20
+ node-version-file : .nvmrc
21
21
- name : Guidepup Setup
22
- uses : guidepup/setup-action@0.17.2
22
+ uses : guidepup/setup-action@0.17.3
23
23
with :
24
24
record : true
25
25
- run : yarn install --frozen-lockfile
26
26
- run : yarn pretest
27
27
- run : yarn test:voiceover:${{ matrix.browser }}
28
- - uses : actions/upload-artifact@v3
28
+ - uses : actions/upload-artifact@v4
29
29
if : always()
30
30
continue-on-error : true
31
31
with :
32
- name : artifacts
32
+ name : artifacts-${{ matrix.os }}-${{ matrix.browser }}
33
33
path : |
34
34
**/test-results/**/*
35
35
**/recordings/**/*
Original file line number Diff line number Diff line change 10
10
build :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
14
- - uses : actions/setup-node@v3
13
+ - uses : actions/checkout@v4
14
+ - uses : actions/setup-node@v4
15
15
with :
16
- node-version : 20
16
+ node-version-file : .nvmrc
17
17
- run : yarn install --frozen-lockfile
18
18
- run : yarn ci
You can’t perform that action at this time.
0 commit comments