Skip to content

Commit bfa03d9

Browse files
authored
Merge pull request #397 from futureware-tech/macos-13
Update plugin dependencies and release v3
2 parents 736249c + 8c4d418 commit bfa03d9

12 files changed

Lines changed: 29413 additions & 17346 deletions

File tree

.github/workflows/print-devices.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
- macos-latest
1818
runs-on: ${{ matrix.os }}
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- run: npm ci && npm run build
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
with:
2424
repository: ${{ github.repository }}.wiki
2525
path: Wiki

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
build: # make sure build/ci work properly
1111
runs-on: macOS-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- run: |
1515
npm install
1616
- run: |
1717
npm run all
1818
test: # make sure the action works on a clean machine without building
1919
runs-on: macOS-latest
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- uses: ./
2323
- run: xcrun simctl bootstatus booted

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.14.0
1+
v20

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v3
2+
3+
- Breaking: change the default simulator from "model = iPhone 8" to "os = iOS",
4+
to avoid re-releasing the action each time the current model gets outdated.
5+
- Bump NodeJS to 20.
6+
17
## v2
28

39
- Update a few packages for security reasons.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ self-hosted runners.
1212

1313
```yaml
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: futureware-tech/simulator-action@v2
15+
- uses: actions/checkout@v4
16+
- uses: futureware-tech/simulator-action@v3
1717
with:
1818
model: 'iPhone 8'
1919
- run: flutter drive

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ outputs:
3434
udid:
3535
description: 'UDID of the launched device, for use with e.g. xcrun command'
3636
runs:
37-
using: 'node16'
37+
using: 'node20'
3838
main: 'dist/index.js'
3939
post: 'dist/index.js'

0 commit comments

Comments
 (0)