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): update actions/github-script action to v6.4.1 #316

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
yarn standard-version --skip.changelog --skip.commit --skip.tag

- name: Generate name for artifact
uses: actions/[email protected].0
uses: actions/[email protected].1
id: version
with:
result-encoding: string
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/post-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: ${{ github.event.workflow_run.event == 'pull_request' }}
steps:
- name: Download artifact
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
script: |
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
Expand All @@ -38,7 +38,7 @@ jobs:

- name: Delete label
id: label
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
result-encoding: string
script: |
Expand All @@ -58,7 +58,7 @@ jobs:
}

- name: Comment on PR
uses: actions/[email protected].0
uses: actions/[email protected].1
if: ${{ steps.label.outputs.result == 'wait-to-build' }}
with:
script: |
Expand All @@ -73,7 +73,7 @@ jobs:
});

- name: Clear artifact
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
script: |
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'prepare-release')
steps:
- name: Clear label
uses: actions/[email protected].0
uses: actions/[email protected].1
env:
NUMBER: ${{ github.event.number }}
with:
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
npx prettier --write CHANGELOG.md --prose-wrap never --ignore-path ./gitignore

- name: Get version from package.json
uses: actions/[email protected].0
uses: actions/[email protected].1
id: version
with:
result-encoding: string
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
path: ./CHANGELOG.md

- name: Prepare release PR
uses: actions/[email protected].0
uses: actions/[email protected].1
env:
TITLE: ${{ steps.version.outputs.title }}
CHANGELOG: ${{ steps.changelog-reader.outputs.changes }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
yarn prettier --write CHANGELOG.md --prose-wrap never --ignore-path ./gitignore

- name: Get version from package.json
uses: actions/[email protected].0
uses: actions/[email protected].1
id: version
with:
result-encoding: string
Expand Down