Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4 (#300)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  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 Oct 12, 2023
1 parent 094afe1 commit a012328
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/account-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
net: ['mainnet_v0']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/account-faucet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: needs.check-secrets.outputs.available

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/alphanet_openzeppelin_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.repository == 'godwokenrises/godwoken-tests'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: compatibility-godwoken
repository: gpBlockchain/openzeppelin-contracts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/axon-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: godwoken-tests
submodules: 'recursive'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/batch-deposit-withdraw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
needs: check-secrets
if: needs.check-secrets.outputs.available
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/batch-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
matrix:
command: [ batch-claim-l1, batch-claim-l2 ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
Expand All @@ -56,7 +56,7 @@ jobs:
needs: [check-secrets, batch-claim]
if: needs.check-secrets.outputs.available && ${{ github.event.inputs.prepare-sudt }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/batch-transactions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
net: ['testnet', 'alphanet']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/contract-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
if: ${{ env.KEY1 != '' && env.KEY2 != '' && env.KEY3 != '' }}
run: echo "available=true" >> $GITHUB_OUTPUT

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deposit_and_withdraw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if: github.repository == 'godwokenrises/godwoken-tests'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
repository: Flouse/godwoken-examples
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fee-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: github.repository == 'godwokenrises/godwoken-tests'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regression-contract-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
if: needs.check-secrets.outputs.available

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-integration-test-v0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ jobs:
# Check multiple repos (nested)
# see: https://github.com/actions/checkout#checkout-multiple-repos-nested
- name: Checkout godwoken-tests
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: godwokenrises/godwoken-tests
ref: v0
submodules: 'recursive'
- name: Checkout Kicker # multiple repos (nested)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: godwokenrises/godwoken-kicker
ref: ${{ inputs.kicker_ref || 'rc-0.10.0' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-integration-test-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
echo "${{ inputs.extra_github_env }}" >> $GITHUB_ENV
- name: Checkout godwoken-tests
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ env.GODWOKEN_TESTS_REPO || 'godwokenrises/godwoken-tests' }}
ref: ${{ env.GODWOKEN_TESTS_REF || 'develop' }}
submodules: 'recursive'

- name: Checkout godwoken-kicker
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ env.GODWOKEN_KICKER_REPO || 'godwokenrises/godwoken-kicker' }}
ref: ${{ env.GODWOKEN_KICKER_REF || 'develop' }}
Expand Down

0 comments on commit a012328

Please sign in to comment.