Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/github-script from 4 to 6.3.0 #48

Closed
Closed
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
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Install @actions/artifact
run: npm install @actions/artifact
- name: Build and upload artifacts
uses: actions/github-script@v4
uses: actions/github-script@v6.3.0
id: boards-list
with:
script: |
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
include-list: ${{ steps.compile-list.outputs.result }}
steps:
- name: Join build lists
uses: actions/github-script@v4
uses: actions/github-script@v6.3.0
id: compile-list
with:
script: |
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
node-version: '14.x'
- name: Install js-yaml
run: npm install js-yaml
- uses: actions/github-script@v4
- uses: actions/github-script@v6.3.0
id: core-list
with:
script: |
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
node-version: '14.x'
- name: Install js-yaml
run: npm install js-yaml
- uses: actions/github-script@v4
- uses: actions/github-script@v6.3.0
id: boards-list
with:
script: |
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
nightly-include: ${{ steps.nightly-list.outputs.result }}
steps:
- name: Create nightly list
uses: actions/github-script@v4
uses: actions/github-script@v6.3.0
id: nightly-list
with:
script: |
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
- name: Install js-yaml
run: npm install js-yaml
- name: Aggregate Metadata
uses: actions/github-script@v4
uses: actions/github-script@v6.3.0
id: aggregate-metadata
with:
script: |
Expand All @@ -330,7 +330,7 @@ jobs:
result-encoding: string

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