Skip to content

Commit

Permalink
chore(deps): bump actions/github-script from 5 to 6 (#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Mar 1, 2022
1 parent 34e16d0 commit 82cf74d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commit_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Lint
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
script: |
const actionCommit = require(`${process.env.GITHUB_WORKSPACE}/scripts/actions.commit.js`)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: ${{ steps.modules-cache.outputs.cache-hit != 'true' }}
run: yarn install
- name: Lint and test
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
script: |
const { execSync } = require('child_process');
Expand All @@ -44,7 +44,7 @@ jobs:
uses: codecov/codecov-action@v2.1.0
- name: Confirm beta integration
if: ${{ success() }}
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
script: |
const { execSync } = require('child_process');
Expand All @@ -57,7 +57,7 @@ jobs:
BUILD_STAGE: Beta
- name: Confirm stable integration
if: ${{ success() }}
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
script: |
const { execSync } = require('child_process');
Expand Down

0 comments on commit 82cf74d

Please sign in to comment.