diff --git a/.github/workflows/auto-add-to-project.yml b/.github/workflows/auto-add-to-project.yml index 8acaa61..8ca8b48 100644 --- a/.github/workflows/auto-add-to-project.yml +++ b/.github/workflows/auto-add-to-project.yml @@ -7,6 +7,6 @@ jobs: automate-project-columns: runs-on: ubuntu-latest steps: - - uses: taiga-family/ci/actions/setup-project@1.16.0 + - uses: taiga-family/ci/actions/setup/project@1.20.0 with: token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml index 6711f9f..83f919e 100644 --- a/.github/workflows/auto-approve.yml +++ b/.github/workflows/auto-approve.yml @@ -8,8 +8,8 @@ jobs: pull-requests: write steps: - uses: actions/checkout@v4.1.0 - - uses: taiga-family/ci/actions/variables@1.16.0 - - uses: taiga-family/ci/actions/two-approve@1.16.0 + - uses: taiga-family/ci/actions/setup/variables@1.20.0 + - uses: taiga-family/ci/actions/auto/approve/double@1.20.0 if: env.TAIGA_FAMILY_BOT_IS_AUTHOR == 'true' with: token1: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml index 99290a9..4022579 100644 --- a/.github/workflows/auto-author-assign.yml +++ b/.github/workflows/auto-author-assign.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.1.0 - - uses: taiga-family/ci/actions/variables@1.16.0 + - uses: taiga-family/ci/actions/setup/variables@1.20.0 - name: Auto assign if: env.IS_OWNER_MODE == 'true' diff --git a/.github/workflows/auto-cleanup-caches.yml b/.github/workflows/auto-cleanup-caches.yml index a1ab15d..275a6f2 100644 --- a/.github/workflows/auto-cleanup-caches.yml +++ b/.github/workflows/auto-cleanup-caches.yml @@ -13,11 +13,11 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - uses: actions/checkout@v4.1.0 - - uses: taiga-family/ci/actions/cleanup-cache@1.16.0 + - uses: taiga-family/ci/actions/auto/cleanup-cache@1.20.0 if: github.event_name == 'push' with: branch-name: ${{ github.head_ref || github.ref_name }} - - uses: taiga-family/ci/actions/cleanup-cache@1.16.0 + - uses: taiga-family/ci/actions/auto/cleanup-cache@1.20.0 if: github.event_name == 'pull_request' with: branch-name: refs/pull/${{ github.event.pull_request.number }}/merge diff --git a/.github/workflows/auto-dependency-review.yml b/.github/workflows/auto-dependency-review.yml index 5ecb1db..54f1039 100644 --- a/.github/workflows/auto-dependency-review.yml +++ b/.github/workflows/auto-dependency-review.yml @@ -9,4 +9,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.1.0 - - uses: taiga-family/ci/actions/dependency-review@1.16.0 + - uses: taiga-family/ci/actions/security/dependency-review@1.20.0 diff --git a/.github/workflows/auto-remove-label.yml b/.github/workflows/auto-remove-label.yml index 90378d2..7516c7d 100644 --- a/.github/workflows/auto-remove-label.yml +++ b/.github/workflows/auto-remove-label.yml @@ -8,4 +8,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.1.0 - - uses: taiga-family/ci/actions/auto-remove-label@1.16.0 + - uses: taiga-family/ci/actions/auto/remove-label@1.20.0 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cecc1bc..2295ff6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,14 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.1.0 - - name: Setup global variables - uses: taiga-family/ci/actions/variables@1.16.0 - - name: Setup Node.js and Cache - uses: taiga-family/ci/actions/setup-node@1.16.0 - - - name: Lint check - run: | - npm run prettier -- --check + - uses: taiga-family/ci/actions/setup/variables@1.20.0 + - uses: taiga-family/ci/actions/setup/node@1.20.0 + - run: npm run prettier -- --check concurrency: group: lint-${{ github.head_ref }}