Skip to content

Commit

Permalink
chore(deps): bump actions/github-script from v2 to v3.1.1 (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored and cdcabrera committed Apr 20, 2021
1 parent bfdcc19 commit bf4cbe3
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@v2
uses: actions/github-script@v3.1.1
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 @@ -39,7 +39,7 @@ jobs:
if: ${{ steps.modules-cache.outputs.cache-hit != 'true' }}
run: yarn install
- name: Lint and test
uses: actions/github-script@v2
uses: actions/github-script@v3.1.1
with:
script: |
const { execSync } = require('child_process');
Expand All @@ -53,7 +53,7 @@ jobs:
uses: codecov/codecov-action@v1
- name: Confirm beta integration
if: ${{ success() }}
uses: actions/github-script@v2
uses: actions/github-script@v3.1.1
with:
script: |
const { execSync } = require('child_process');
Expand All @@ -66,7 +66,7 @@ jobs:
BUILD_STAGE: Beta
- name: Confirm stable integration
if: ${{ success() }}
uses: actions/github-script@v2
uses: actions/github-script@v3.1.1
with:
script: |
const { execSync } = require('child_process');
Expand Down

0 comments on commit bf4cbe3

Please sign in to comment.