From 16368b8eed94d12fb914179c5b747eaf307dafbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ba=C4=8Dov=C4=8Din?= Date: Thu, 6 Mar 2025 15:19:49 +0100 Subject: [PATCH] update actions cache (#1158) Co-authored-by: juraj.bacovcin --- .github/workflows/build.yml | 2 +- .github/workflows/deploy.yaml | 2 +- packages/shared/core/src/lib/models/Blockchain.ts | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 761f8623f4..f61a553261 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 99d595ffbd..03b7abe880 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 1e22bc095c..26b29bfe7d 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