diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 35ccc44..cdc0a2d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,7 +38,7 @@ jobs: yarn standard-version --skip.changelog --skip.commit --skip.tag - name: Generate name for artifact - uses: actions/github-script@v6.4.0 + uses: actions/github-script@v6.4.1 id: version with: result-encoding: string diff --git a/.github/workflows/post-build.yml b/.github/workflows/post-build.yml index 8009224..a955e41 100644 --- a/.github/workflows/post-build.yml +++ b/.github/workflows/post-build.yml @@ -13,7 +13,7 @@ jobs: if: ${{ github.event.workflow_run.event == 'pull_request' }} steps: - name: Download artifact - uses: actions/github-script@v6.4.0 + uses: actions/github-script@v6.4.1 with: script: | var artifacts = await github.rest.actions.listWorkflowRunArtifacts({ @@ -38,7 +38,7 @@ jobs: - name: Delete label id: label - uses: actions/github-script@v6.4.0 + uses: actions/github-script@v6.4.1 with: result-encoding: string script: | @@ -58,7 +58,7 @@ jobs: } - name: Comment on PR - uses: actions/github-script@v6.4.0 + uses: actions/github-script@v6.4.1 if: ${{ steps.label.outputs.result == 'wait-to-build' }} with: script: | @@ -73,7 +73,7 @@ jobs: }); - name: Clear artifact - uses: actions/github-script@v6.4.0 + uses: actions/github-script@v6.4.1 with: script: | const artifacts = await github.rest.actions.listWorkflowRunArtifacts({ diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 889680b..6469c2e 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -22,7 +22,7 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'prepare-release') steps: - name: Clear label - uses: actions/github-script@v6.4.0 + uses: actions/github-script@v6.4.1 env: NUMBER: ${{ github.event.number }} with: @@ -60,7 +60,7 @@ jobs: npx prettier --write CHANGELOG.md --prose-wrap never --ignore-path ./gitignore - name: Get version from package.json - uses: actions/github-script@v6.4.0 + uses: actions/github-script@v6.4.1 id: version with: result-encoding: string @@ -90,7 +90,7 @@ jobs: path: ./CHANGELOG.md - name: Prepare release PR - uses: actions/github-script@v6.4.0 + uses: actions/github-script@v6.4.1 env: TITLE: ${{ steps.version.outputs.title }} CHANGELOG: ${{ steps.changelog-reader.outputs.changes }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 971d115..c3d67d7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: yarn prettier --write CHANGELOG.md --prose-wrap never --ignore-path ./gitignore - name: Get version from package.json - uses: actions/github-script@v6.4.0 + uses: actions/github-script@v6.4.1 id: version with: result-encoding: string