From da7d349fb9f4f1a1fbe584bc53a587f4b7ba9a6e Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 18 Mar 2025 11:27:20 +0100 Subject: [PATCH] Update GitHub actions --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3ac9dde196..aa754857f9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,18 +8,18 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: 3.11 - name: Poetry cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.cache/pypoetry key: poetry-cache-${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }} - name: Pip cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.cache/pip key: pip-cache-${{ runner.os }}-${{ hashFiles('.github/workflows/*.yml') }}