From 489006579caf2468786846b763479370761ed48e Mon Sep 17 00:00:00 2001
From: taiga-family-bot <140712314+taiga-family-bot@users.noreply.github.com>
Date: Mon, 16 Sep 2024 15:44:57 +0300
Subject: [PATCH] chore(deps): update taiga-family/ci action to v1.74.0 (#1388)

---
 .github/workflows/auto-approve.yml       | 10 +++++-----
 .github/workflows/auto-author-assign.yml |  4 ++--
 .github/workflows/auto-remove-label.yml  |  4 ++--
 .github/workflows/build-demo.yml         |  6 +++---
 .github/workflows/build.yml              |  6 +++---
 .github/workflows/deploy-gh-pages.yml    |  8 ++++----
 .github/workflows/deploy-preview.yml     |  6 +++---
 .github/workflows/e2e.yml                | 14 +++++++-------
 .github/workflows/lint.yml               |  8 ++++----
 .github/workflows/release.yml            | 12 ++++++------
 .github/workflows/snapshots.yml          |  6 +++---
 .github/workflows/test.yml               |  6 +++---
 12 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml
index 64b097600..a185de9ac 100644
--- a/.github/workflows/auto-approve.yml
+++ b/.github/workflows/auto-approve.yml
@@ -10,8 +10,8 @@ jobs:
     outputs:
       matrix: ${{ steps.matrix.outputs.value }}
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
       - id: matrix
         if: env.IS_TAIGA_FAMILY_BOT_PR_AUTHOR == 'true'
         run: echo "value=$JOBS_NAME" >> $GITHUB_OUTPUT
@@ -24,7 +24,7 @@ jobs:
       matrix:
         value: ${{ fromJSON(needs.setup.outputs.matrix) }}
     steps:
-      - uses: taiga-family/ci/actions/run/wait-job@v1.73.1
+      - uses: taiga-family/ci/actions/run/wait-job@v1.74.0
         with:
           token: ${{ secrets.GITHUB_TOKEN }}
           job: ${{ matrix.value }}
@@ -33,11 +33,11 @@ jobs:
     needs: [wait]
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/auto/approve/double@v1.73.1
+      - uses: taiga-family/ci/actions/auto/approve/double@v1.74.0
         with:
           token1: ${{ secrets.GITHUB_TOKEN }}
           token2: ${{ secrets.TAIGA_FAMILY_APPROVE_BOT_PAT }}
-      - uses: taiga-family/ci/actions/run/merge@v1.73.1
+      - uses: taiga-family/ci/actions/run/merge@v1.74.0
         with:
           token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
 
diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml
index a3ecc879f..9d75e0fd0 100644
--- a/.github/workflows/auto-author-assign.yml
+++ b/.github/workflows/auto-author-assign.yml
@@ -8,8 +8,8 @@ jobs:
     name: PR author as an assignee
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
       - uses: toshimaru/auto-author-assign@v2.1.1
         if: env.IS_OWNER_MODE == 'true'
         with:
diff --git a/.github/workflows/auto-remove-label.yml b/.github/workflows/auto-remove-label.yml
index c24d6d820..20a85aadb 100644
--- a/.github/workflows/auto-remove-label.yml
+++ b/.github/workflows/auto-remove-label.yml
@@ -7,5 +7,5 @@ jobs:
   remove_label:
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/auto/remove-label@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/auto/remove-label@v1.74.0
diff --git a/.github/workflows/build-demo.yml b/.github/workflows/build-demo.yml
index 63982fe22..28376fd62 100644
--- a/.github/workflows/build-demo.yml
+++ b/.github/workflows/build-demo.yml
@@ -10,9 +10,9 @@ jobs:
     name: Build demo
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
-      - uses: taiga-family/ci/actions/setup/node@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
+      - uses: taiga-family/ci/actions/setup/node@v1.74.0
       - run: npx nx prerender editor-demo
 
 concurrency:
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8df94ddbd..e75b709de 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -10,9 +10,9 @@ jobs:
     name: Build package
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
-      - uses: taiga-family/ci/actions/setup/node@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
+      - uses: taiga-family/ci/actions/setup/node@v1.74.0
       - run: npx nx build editor
 
 concurrency:
diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml
index 6d92438d4..9e260b798 100644
--- a/.github/workflows/deploy-gh-pages.yml
+++ b/.github/workflows/deploy-gh-pages.yml
@@ -7,13 +7,13 @@ jobs:
   deploy:
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
-      - uses: taiga-family/ci/actions/setup/node@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
+      - uses: taiga-family/ci/actions/setup/node@v1.74.0
 
       - run: npx nx prerender editor-demo -c github
 
-      - uses: taiga-family/ci/actions/deploy/github-pages@v1.73.1
+      - uses: taiga-family/ci/actions/deploy/github-pages@v1.74.0
         with:
           token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
           folder: dist/demo/browser
diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml
index 1e4d78e29..64392b46d 100644
--- a/.github/workflows/deploy-preview.yml
+++ b/.github/workflows/deploy-preview.yml
@@ -6,9 +6,9 @@ jobs:
     name: Firebase
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
-      - uses: taiga-family/ci/actions/setup/node@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
+      - uses: taiga-family/ci/actions/setup/node@v1.74.0
       - run: npx nx build editor-demo
       - name: Deploy preview
         uses: FirebaseExtended/action-hosting-deploy@v0
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index 7b74b3f2a..6b86f8ba5 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -8,12 +8,12 @@ jobs:
     name: E2E
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
-      - uses: taiga-family/ci/actions/setup/node@v1.73.1
-      - uses: taiga-family/ci/actions/setup/playwright@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
+      - uses: taiga-family/ci/actions/setup/node@v1.74.0
+      - uses: taiga-family/ci/actions/setup/playwright@v1.74.0
       - run: npx nx prerender editor-demo
-      - uses: taiga-family/ci/actions/run/serve@v1.73.1
+      - uses: taiga-family/ci/actions/run/serve@v1.74.0
         with:
           port: ${{ env.NG_SERVER_PORT }}
           directory: ${{ env.DIST }}
@@ -22,12 +22,12 @@ jobs:
 
       - run: npx nx e2e editor-demo-playwright -- --update-snapshots
 
-      - uses: taiga-family/ci/actions/run/clone@v1.73.1
+      - uses: taiga-family/ci/actions/run/clone@v1.74.0
         with:
           branch: snapshots/demo/next/${{ github.base_ref }}
           destination: ${{ env.DIST_NEXT }}
 
-      - uses: taiga-family/ci/actions/run/serve@v1.73.1
+      - uses: taiga-family/ci/actions/run/serve@v1.74.0
         with:
           port: ${{ env.NG_SERVER_PORT }}
           directory: ${{ env.DIST_NEXT }}
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 6ca57035a..3194471b1 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -10,9 +10,9 @@ jobs:
     name: Lint
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
-      - uses: taiga-family/ci/actions/setup/node@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
+      - uses: taiga-family/ci/actions/setup/node@v1.74.0
       - run: |
           if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
               npm run stylelint -- --fix
@@ -23,7 +23,7 @@ jobs:
               npm run prettier -- --check
               npm run lint
           fi
-      - uses: taiga-family/ci/actions/auto/push@v1.73.1
+      - uses: taiga-family/ci/actions/auto/push@v1.74.0
         with:
           token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
 
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 9f7ad1e5e..73641f553 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -20,17 +20,17 @@ jobs:
     env:
       GITHUB_TOKEN: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
         with:
           token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
           ref: ${{ github.ref }}
           fetch-depth: 0
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
-      - uses: taiga-family/ci/actions/setup/node@v1.73.1
-      - uses: taiga-family/ci/actions/setup/config/git@v1.73.1
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
+      - uses: taiga-family/ci/actions/setup/node@v1.74.0
+      - uses: taiga-family/ci/actions/setup/config/git@v1.74.0
         with:
           token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
-      - uses: taiga-family/ci/actions/setup/config/npm@v1.73.1
+      - uses: taiga-family/ci/actions/setup/config/npm@v1.74.0
         with:
           token: ${{ secrets.TAIGA_UI_SCOPE_NPM_TOKEN }}
 
@@ -48,7 +48,7 @@ jobs:
 
       - name: Announce to Telegram
         if: ${{ !contains(steps.info.outputs.version, 'rc') }}
-        uses: taiga-family/ci/actions/messenger/telegram/announce@v1.73.1
+        uses: taiga-family/ci/actions/messenger/telegram/announce@v1.74.0
         with:
           chatId: ${{ secrets.TAIGA_TELEGRAM_CHAT_ID }}
           topicId: ${{ secrets.TAIGA_TELEGRAM_CHAT_THREAD_ID }}
diff --git a/.github/workflows/snapshots.yml b/.github/workflows/snapshots.yml
index c82d814b0..719edf66a 100644
--- a/.github/workflows/snapshots.yml
+++ b/.github/workflows/snapshots.yml
@@ -7,9 +7,9 @@ jobs:
   snapshots:
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
-      - uses: taiga-family/ci/actions/setup/node@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
+      - uses: taiga-family/ci/actions/setup/node@v1.74.0
 
       - run: npx nx build editor-demo
       - run: tree ${{ env.DIST }} -P '*.html'
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 774d89d7e..c6a1c1324 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -10,9 +10,9 @@ jobs:
     name: Tests
     runs-on: ubuntu-latest
     steps:
-      - uses: taiga-family/ci/actions/setup/checkout@v1.73.1
-      - uses: taiga-family/ci/actions/setup/variables@v1.73.1
-      - uses: taiga-family/ci/actions/setup/node@v1.73.1
+      - uses: taiga-family/ci/actions/setup/checkout@v1.74.0
+      - uses: taiga-family/ci/actions/setup/variables@v1.74.0
+      - uses: taiga-family/ci/actions/setup/node@v1.74.0
       - run: npx nx test editor --nxBail
       - uses: codecov/codecov-action@v4.5.0
         with: