From 367f8636612be291d6b65714168781f4edcb0f88 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Sat, 22 Aug 2026 11:24:19 +0200 Subject: [PATCH] Update GitHub Actions to use latest action versions --- .github/workflows/lint.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 0634f697c..f6a80e082 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -15,13 +15,13 @@ jobs: steps: - name: checkout-code - uses: actions/checkout@main + uses: actions/checkout@v4 - name: install-uv run: curl -LsSf https://astral.sh/uv/install.sh | sh - name: setup-python - uses: actions/setup-python@main + uses: actions/setup-python@v5 with: python-version: 3.12.3 @@ -29,7 +29,7 @@ jobs: run: uv pip install ruff pylint pre-commit --system - name: setup-node - uses: actions/setup-node@main + uses: actions/setup-node@v4 with: node-version: 24 @@ -44,7 +44,7 @@ jobs: run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - name: cache-pnpm-store - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.pnpm-store.outputs.STORE_PATH }} key: pnpm-store-${{ hashFiles('pnpm-lock.yaml') }} @@ -55,7 +55,7 @@ jobs: run: pnpm install --frozen-lockfile --unsafe-perm - name: pre-commit - uses: pre-commit-ci/lite-action@v1.1.0 + uses: pre-commit-ci/lite-action@v1.2.0 if: always() with: msg: apply code formatting and linting auto-fixes