diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 761f8623f..f61a55326 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 99d595ffb..03b7abe88 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -42,7 +42,7 @@ jobs: run: | git config --local user.name github-actions git config --local user.email github-actions@github.com - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/packages/shared/core/src/lib/models/Blockchain.ts b/packages/shared/core/src/lib/models/Blockchain.ts index 1e22bc095..26b29bfe7 100644 --- a/packages/shared/core/src/lib/models/Blockchain.ts +++ b/packages/shared/core/src/lib/models/Blockchain.ts @@ -83,3 +83,4 @@ export type EvmBasedBlockchain = | Blockchain.FTM | Blockchain.ZK_SYNC | Blockchain.RON + | Blockchain.BERA