Skip to content

Commit

Permalink
chore: update taiga-family/ci action to v1.102.0 (#1622)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot authored Dec 9, 2024
1 parent e51c473 commit 25289d1
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assign-author.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: toshimaru/[email protected]
continue-on-error: true

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix: ${{ steps.matrix.outputs.value }}
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- id: matrix
run: echo "value=$JOBS_NAME" >> $GITHUB_OUTPUT

Expand All @@ -24,7 +24,7 @@ jobs:
matrix:
value: ${{ fromJSON(needs.setup.outputs.matrix) }}
steps:
- uses: taiga-family/ci/actions/run/wait-job@v1.100.0
- uses: taiga-family/ci/actions/run/wait-job@v1.102.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
job: ${{ matrix.value }}
Expand All @@ -34,13 +34,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/auto/approve/double@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/auto/approve/double@v1.102.0
if: env.IS_TAIGA_FAMILY_BOT_PR_AUTHOR == 'true'
with:
token1: ${{ secrets.GITHUB_TOKEN }}
token2: ${{ secrets.TAIGA_FAMILY_APPROVE_BOT_PAT }}
- uses: taiga-family/ci/actions/run/merge@v1.100.0
- uses: taiga-family/ci/actions/run/merge@v1.102.0
if: env.IS_TAIGA_FAMILY_BOT_PR_AUTHOR == 'true'
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/node@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/setup/node@v1.102.0
- run: npx nx prerender editor-demo

concurrency:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/node@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/setup/node@v1.102.0
- run: npx nx build editor

concurrency:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/node@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/setup/node@v1.102.0
- run: npx nx prerender editor-demo -c github
- uses: taiga-family/ci/actions/deploy/github-pages@v1.100.0
- uses: taiga-family/ci/actions/deploy/github-pages@v1.102.0
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
folder: dist/demo/browser
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/node@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/setup/node@v1.102.0
- run: npx nx build editor-demo
- uses: FirebaseExtended/[email protected]
continue-on-error: true
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ jobs:
details_url: ${{ steps.e2e-report.outputs.details_url }}
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/node@v1.100.0
- uses: taiga-family/ci/actions/setup/playwright@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/setup/node@v1.102.0
- uses: taiga-family/ci/actions/setup/playwright@v1.102.0
- run: npx nx prerender editor-demo -c development
- uses: taiga-family/ci/actions/run/serve@v1.100.0
- uses: taiga-family/ci/actions/run/serve@v1.102.0
with:
port: ${{ env.NG_SERVER_PORT }}
directory: ${{ env.DIST }}

- run: npx nx e2e editor-demo-playwright -- --update-snapshots

- uses: taiga-family/ci/actions/run/clone@v1.100.0
- uses: taiga-family/ci/actions/run/clone@v1.102.0
with:
branch: snapshots/demo/next/${{ github.base_ref }}
destination: ${{ env.DIST_NEXT }}

- uses: taiga-family/ci/actions/run/serve@v1.100.0
- uses: taiga-family/ci/actions/run/serve@v1.102.0
with:
port: ${{ env.NG_SERVER_PORT }}
directory: ${{ env.DIST_NEXT }}
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0

- name: Download artifacts for Playwright
continue-on-error: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- uses: actions/[email protected]
with:
persist-credentials: false
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/node@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/setup/node@v1.102.0
- run: |
npm run cspell
Expand All @@ -27,7 +27,7 @@ jobs:
npm run prettier -- --check
npm run lint
fi
- uses: taiga-family/ci/actions/auto/push@v1.100.0
- uses: taiga-family/ci/actions/auto/push@v1.102.0
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ready-to-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
if: github.event.review.state == 'approved'
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/auto/label-when-approved@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/auto/label-when-approved@v1.102.0
with:
approvals: 1
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ jobs:
if: "!contains(github.event.head_commit.message, 'chore(release)')"
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/run/release-it@v1.100.0
- uses: taiga-family/ci/actions/run/release-it@v1.102.0
id: release-it
with:
ref: ${{ github.ref }}
mode: ${{ github.event.inputs.mode }}
npmToken: ${{ secrets.TAIGA_UI_SCOPE_NPM_TOKEN }}
githubToken: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}

- uses: taiga-family/ci/actions/run/read-package-json@v1.100.0
- uses: taiga-family/ci/actions/run/read-package-json@v1.102.0
id: info
with:
path: ./projects/editor/package.json

- name: Announce to Telegram
if: steps.release-it.outputs.released == 'true'
uses: taiga-family/ci/actions/messenger/telegram/announce@v1.100.0
uses: taiga-family/ci/actions/messenger/telegram/announce@v1.102.0
with:
chatId: ${{ secrets.TAIGA_TELEGRAM_CHAT_ID }}
topicId: ${{ secrets.TAIGA_TELEGRAM_CHAT_THREAD_ID }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/node@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/setup/node@v1.102.0

- run: npx nx prerender editor-demo -c development
- run: tree ${{ env.DIST }} -P '*.html'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.100.0
- uses: taiga-family/ci/actions/setup/node@v1.100.0
- uses: taiga-family/ci/actions/setup/variables@v1.102.0
- uses: taiga-family/ci/actions/setup/node@v1.102.0
- run: npx nx test editor --nxBail
- uses: codecov/[email protected]
with:
Expand Down

0 comments on commit 25289d1

Please sign in to comment.