File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 13
13
if : github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.head.repo.full_name != github.repository
14
14
strategy :
15
15
matrix :
16
- os : [ubuntu-latest, macos-latest, windows-latest]
16
+ # we use macos-13 instead of macos-latest because GHA runners on ARM do not support docker
17
+ # see https://github.com/docker/setup-docker-action/pull/53
18
+ os : [ubuntu-latest, macos-13, windows-latest]
17
19
fail-fast : false
18
20
runs-on : ${{ matrix.os }}
19
21
steps :
24
26
name : Setup Docker Environment
25
27
with :
26
28
set-host : true
27
- rootless : true
28
29
- uses : actions/setup-node@v5
29
30
with :
30
31
node-version-file : package.json
Original file line number Diff line number Diff line change 14
14
if : github.event_name == 'push' || (github.event.pull_request.user.login != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name == github.repository)
15
15
strategy :
16
16
matrix :
17
- os : [ubuntu-latest, macos-latest, windows-latest]
17
+ # we use macos-13 instead of macos-latest because GHA runners on ARM do not support docker
18
+ # see https://github.com/docker/setup-docker-action/pull/53
19
+ os : [ubuntu-latest, macos-13, windows-latest]
18
20
fail-fast : false
19
21
runs-on : ${{ matrix.os }}
20
22
steps :
25
27
name : Setup Docker Environment
26
28
with :
27
29
set-host : true
28
- rootless : true
29
30
- uses : actions/setup-node@v5
30
31
with :
31
32
node-version-file : package.json
52
53
name : Setup Docker Environment
53
54
with :
54
55
set-host : true
55
- rootless : true
56
56
- uses : actions/setup-node@v5
57
57
with :
58
58
node-version-file : package.json
You can’t perform that action at this time.
0 commit comments