diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml index 90784bcc..5a18916e 100644 --- a/.github/workflows/ci-backend.yml +++ b/.github/workflows/ci-backend.yml @@ -52,13 +52,13 @@ jobs: TZ: "America/Chicago" - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: version: v1.58 working-directory: backend/app - name: golangci-lint on example directory - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: version: v1.58 args: --config ../../.golangci.yml diff --git a/.github/workflows/ci-frontend-api.yml b/.github/workflows/ci-frontend-api.yml index 2aaf0676..7b6fd8c0 100644 --- a/.github/workflows/ci-frontend-api.yml +++ b/.github/workflows/ci-frontend-api.yml @@ -32,7 +32,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -44,7 +44,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -76,7 +76,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -88,7 +88,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -120,7 +120,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -132,7 +132,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} diff --git a/.github/workflows/ci-frontend.yml b/.github/workflows/ci-frontend.yml index e7b2a9d3..a571a16f 100644 --- a/.github/workflows/ci-frontend.yml +++ b/.github/workflows/ci-frontend.yml @@ -32,7 +32,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -44,7 +44,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -76,7 +76,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -88,7 +88,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -120,7 +120,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -132,7 +132,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -158,14 +158,14 @@ jobs: uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 run_install: false - name: Check bundle size - uses: andresz1/size-limit-action@7313b26c76b3666c1dc41e2ca05370e201a9b7de + uses: andresz1/size-limit-action@94bc357df29c36c8f8d50ea497c3e225c3c95d1d with: github_token: ${{ secrets.GITHUB_TOKEN }} directory: ./frontend/apps/remark42 @@ -188,7 +188,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -200,7 +200,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 69e3379c..37c8f2a0 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -28,7 +28,7 @@ jobs: id: tests run: COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose -f compose-e2e-test.yml up --build --quiet-pull --exit-code-from tests - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report