From 736190ae41f5b0435cde32f6f4feaa5b13fc9485 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 12:52:26 +0000 Subject: [PATCH] Bump actions/github-script from 5 to 6 (#1637) --- .github/workflows/build-gem-package-notify.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-gem-package-notify.yml b/.github/workflows/build-gem-package-notify.yml index 3c102ca..7fab117 100644 --- a/.github/workflows/build-gem-package-notify.yml +++ b/.github/workflows/build-gem-package-notify.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: 'Download artifact' - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: script: | const artifacts = await github.paginate( @@ -40,7 +40,7 @@ jobs: var fs = require('fs'); fs.writeFileSync('${{github.workspace}}/pr.zip', Buffer.from(download.data)); - run: unzip pr.zip - - uses: actions/github-script@v5 + - uses: actions/github-script@v6 with: # This snippet is public-domain, taken from # https://github.com/oprypin/nightly.link/blob/master/.github/workflows/pr-comment.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d6ab041..41d13b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: fetch-depth: 0 - name: Determine remote default branch - uses: actions/github-script@v6.3.1 + uses: actions/github-script@v6 id: remote_default_branch with: github-token: ${{secrets.GITHUB_TOKEN}}