Skip to content

Commit

Permalink
build(deps): bump actions/github-script from 6 to 7 (#314)
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6...v7)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 1, 2023
1 parent af83a3c commit f2b19a8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/batch-deposit-withdraw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
node-version: '16'

- uses: actions/github-script@v6
- uses: actions/github-script@v7
id: start-time
with:
script: return Date.now()
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/reusable-integration-test-v0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:
- name: Get current layer2 block number
id: deposit-block-num
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { getTipBlockNumber } = require("./scripts/helper");
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
# Note:
# The deposited asset can be withdrawn only after `finalize_blocks` layer2 blocks.
- name: Wait until [finalize_blocks] layer2 blocks passed
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { getTipBlockNumber, waitXl2BlocksPassed } = require("./scripts/helper");
Expand All @@ -313,7 +313,7 @@ jobs:
fi
- name: Wait 2 layer2 blocks passed
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { waitXl2BlocksPassed } = require("./scripts/helper");
Expand All @@ -330,15 +330,15 @@ jobs:
- name: Get current layer2 block number
id: withdrawal-block-num
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { getTipBlockNumber } = require("./scripts/helper");
return await getTipBlockNumber();
result-encoding: string

- name: Wait until [finalize_blocks] layer2 blocks passed
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { waitXl2BlocksPassed } = require("./scripts/helper");
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable-integration-test-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
yarn install && yarn build-all
- name: Wait 1 layer2 blocks passed
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { waitXl2BlocksPassed } = require("./scripts/helper");
Expand All @@ -206,7 +206,7 @@ jobs:
./kicker deposit-v0 10000 # Use ckb-miner key
- name: Wait 1 layer2 blocks passed
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { waitXl2BlocksPassed } = require("./scripts/helper");
Expand All @@ -233,7 +233,7 @@ jobs:
exit 1
- name: Wait 1 layer2 blocks passed
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { waitXl2BlocksPassed } = require("./scripts/helper");
Expand Down

0 comments on commit f2b19a8

Please sign in to comment.