From e16eeed654d6c02abfae9f1bc724603519b0a46d Mon Sep 17 00:00:00 2001 From: zAlweNy26 Date: Thu, 7 Mar 2024 19:54:44 +0100 Subject: [PATCH] update workflows --- .github/workflows/build.yml | 8 ++++---- .github/workflows/develop.yml | 8 ++++---- .github/workflows/playwright.yml | 6 +++--- .github/workflows/vitest.yml | 4 ++-- components.d.ts | 1 - 5 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3546452..8cbf5f9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,8 +23,8 @@ jobs: timeout-minutes: 120 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Install dependencies @@ -37,14 +37,14 @@ jobs: - name: Build static files run: npm run build --if-present - name: Zip Release - uses: TheDoctor0/zip-release@0.7.1 + uses: TheDoctor0/zip-release@0.7.6 with: type: 'zip' filename: 'release.zip' directory: './dist' path: '.' - name: Upload Release - uses: ncipollo/release-action@v1.12.0 + uses: ncipollo/release-action@v1.14.0 with: tag: 'Admin' artifacts: './dist/release.zip' diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 37d225d..a9c5aee 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -22,8 +22,8 @@ jobs: timeout-minutes: 120 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Install dependencies @@ -31,14 +31,14 @@ jobs: - name: Build static files run: npm run build --if-present - name: Zip Release - uses: TheDoctor0/zip-release@0.7.1 + uses: TheDoctor0/zip-release@0.7.6 with: type: 'zip' filename: 'develop.zip' directory: './dist' path: '.' - name: Upload Release - uses: ncipollo/release-action@v1.12.0 + uses: ncipollo/release-action@v1.14.0 with: tag: 'Admin' artifacts: './dist/develop.zip' diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 78e8733..76f1339 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -21,8 +21,8 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Install dependencies @@ -31,7 +31,7 @@ jobs: run: npx playwright install --with-deps - name: Run Playwright tests run: npx playwright test - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report diff --git a/.github/workflows/vitest.yml b/.github/workflows/vitest.yml index 8961627..4f597bd 100644 --- a/.github/workflows/vitest.yml +++ b/.github/workflows/vitest.yml @@ -21,8 +21,8 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Install dependencies diff --git a/components.d.ts b/components.d.ts index 734ed34..23b5023 100644 --- a/components.d.ts +++ b/components.d.ts @@ -16,7 +16,6 @@ declare module 'vue' { Header: typeof import('./src/components/Header.vue')['default'] HeroiconsAdjustmentsVertical: typeof import('~icons/heroicons/adjustments-vertical')['default'] HeroiconsArrowDown20Solid: typeof import('~icons/heroicons/arrow-down20-solid')['default'] - HeroiconsArrowUpSolid: typeof import('~icons/heroicons/arrow-up-solid')['default'] HeroiconsBars3Solid: typeof import('~icons/heroicons/bars3-solid')['default'] HeroiconsBoltSolid: typeof import('~icons/heroicons/bolt-solid')['default'] HeroiconsChevronUpDown20Solid: typeof import('~icons/heroicons/chevron-up-down20-solid')['default']