Skip to content
Open
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
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Install @actions/artifact
run: npm install @actions/artifact@5.0.3
- name: Build
uses: actions/github-script@v7
uses: actions/github-script@v9
id: boards-list
with:
script: |
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
throw new Error('Failed to build one or more configurations');
}
- name: Upload artifacts
uses: actions/github-script@v7
uses: actions/github-script@v9
continue-on-error: ${{ github.event_name == 'pull_request' }}
id: boards-upload
with:
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
include-list: ${{ steps.compile-list.outputs.result }}
steps:
- name: Join build lists
uses: actions/github-script@v7
uses: actions/github-script@v9
id: compile-list
with:
script: |
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
node-version: "14.x"
- name: Install js-yaml
run: npm install js-yaml
- uses: actions/github-script@v7
- uses: actions/github-script@v9
id: core-list
with:
script: |
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
node-version: "14.x"
- name: Install js-yaml
run: npm install js-yaml
- uses: actions/github-script@v7
- uses: actions/github-script@v9
id: boards-list
with:
script: |
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:
nightly-include: ${{ steps.nightly-list.outputs.result }}
steps:
- name: Create nightly list
uses: actions/github-script@v7
uses: actions/github-script@v9
id: nightly-list
with:
script: |
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
- name: Install js-yaml
run: npm install js-yaml
- name: Aggregate Metadata
uses: actions/github-script@v7
uses: actions/github-script@v9
id: aggregate-metadata
with:
script: |
Expand All @@ -374,7 +374,7 @@ jobs:
result-encoding: string

- name: Organize Metadata
uses: actions/github-script@v7
uses: actions/github-script@v9
id: organize-metadata
with:
script: |
Expand Down Expand Up @@ -436,15 +436,15 @@ jobs:
with:
json: true
escape_json: false
- uses: actions/github-script@v7
- uses: actions/github-script@v9
id: board-changes
with:
script: |
const changedFiles = JSON.parse(`${{ steps.changed-files.outputs.all_changed_files }}`);
const boardChanges = changedFiles.filter(f => f.startsWith('app/boards'));
return boardChanges.length ? 'true' : 'false';
result-encoding: string
- uses: actions/github-script@v7
- uses: actions/github-script@v9
id: core-changes
with:
script: |
Expand Down
Loading