diff --git a/.gitea/workflows/bench.yml b/.gitea/workflows/bench.yml index 76f8bbb..28869aa 100644 --- a/.gitea/workflows/bench.yml +++ b/.gitea/workflows/bench.yml @@ -14,7 +14,9 @@ jobs: uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 with: node-version: 24 - cache: pnpm + + - name: Install pnpm + run: corepack enable && corepack prepare pnpm@10.30.0 --activate - name: Setup Python uses: https://git.quad4.io/actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0e83f3f..89d3afe 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -17,7 +17,6 @@ jobs: uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 with: node-version: 24 - cache: pnpm - name: Install pnpm run: corepack enable && corepack prepare pnpm@10.30.0 --activate - name: Setup Python @@ -33,7 +32,9 @@ jobs: - name: Setup Python environment run: task setup:be - name: pip-audit - run: poetry run pip install pip-audit && poetry run pip-audit + run: | + poetry run pip install --upgrade "pip>=26.0" pip-audit + poetry run pip-audit - name: Install Node dependencies run: task deps:fe - name: pnpm audit @@ -52,7 +53,6 @@ jobs: uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 with: node-version: 24 - cache: pnpm - name: Install pnpm run: corepack enable && corepack prepare pnpm@10.30.0 --activate - name: Setup Task @@ -102,7 +102,6 @@ jobs: uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 with: node-version: 24 - cache: pnpm - name: Install pnpm run: corepack enable && corepack prepare pnpm@10.30.0 --activate - name: Setup Python @@ -118,7 +117,9 @@ jobs: - name: Install dependencies run: task install - name: pip-audit - run: poetry run pip install pip-audit && poetry run pip-audit + run: | + poetry run pip install --upgrade "pip>=26.0" pip-audit + poetry run pip-audit - name: pnpm audit run: pnpm audit --audit-level=high - name: Run language tests diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 0dfd79c..a31f1b2 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -18,7 +18,6 @@ jobs: uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 with: node-version: 24 - cache: pnpm - name: Install pnpm run: corepack enable && corepack prepare pnpm@10.30.0 --activate