Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/print-devices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: npm ci && npm run build
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: ${{ github.repository }}.wiki
path: Wiki
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
build: # make sure build/ci work properly
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: |
npm install
- run: |
npm run all
test: # make sure the action works on a clean machine without building
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./
- run: xcrun simctl bootstatus booted
6 changes: 3 additions & 3 deletions .github/workflows/update-overlays.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
'ubuntu-latest'
}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6

# Copy over shared workflow overlays.
- uses: actions/checkout@v2
- uses: actions/checkout@v6
with:
repository: futureware-tech/template
# Has to be under the repository directory, otherwise checkout fails.
Expand All @@ -38,7 +38,7 @@ jobs:
cp -rf "tmp/template/." .

# Copy over repository-specific custom overlay.
- uses: actions/checkout@v2
- uses: actions/checkout@v6
with:
repository: futureware-tech/overlays
path: tmp/overlays
Expand Down
Loading