diff --git a/.gitea/workflows/ci-python-poetry-with-docker.yml b/.gitea/workflows/ci-python-poetry-with-docker.yml index c03dfb5..6c982ff 100644 --- a/.gitea/workflows/ci-python-poetry-with-docker.yml +++ b/.gitea/workflows/ci-python-poetry-with-docker.yml @@ -44,7 +44,7 @@ jobs: poetry config virtualenvs.create true --local poetry config virtualenvs.in-project true --local - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: Define cache for dependencies with: path: ./.venv diff --git a/.gitea/workflows/ci-python-poetry.yml b/.gitea/workflows/ci-python-poetry.yml index 12195fb..9f2a9b8 100644 --- a/.gitea/workflows/ci-python-poetry.yml +++ b/.gitea/workflows/ci-python-poetry.yml @@ -37,7 +37,7 @@ jobs: poetry config virtualenvs.create true --local poetry config virtualenvs.in-project true --local - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: Define cache for dependencies with: path: ./.venv diff --git a/.gitea/workflows/ci-python-uv-with-docker.yml b/.gitea/workflows/ci-python-uv-with-docker.yml index d3459fc..34baba1 100644 --- a/.gitea/workflows/ci-python-uv-with-docker.yml +++ b/.gitea/workflows/ci-python-uv-with-docker.yml @@ -37,7 +37,7 @@ jobs: python-version: "${{ vars.PYTHON_VERSION }}" - name: uv cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.uv-cache key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} diff --git a/.gitea/workflows/ci-python-with-docker.yml b/.gitea/workflows/ci-python-with-docker.yml index d019597..a95ab9e 100644 --- a/.gitea/workflows/ci-python-with-docker.yml +++ b/.gitea/workflows/ci-python-with-docker.yml @@ -36,7 +36,7 @@ jobs: - name: Update Pip run: pip install -U pip - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: Define cache for dependencies with: path: . diff --git a/.gitea/workflows/ci-python.yml b/.gitea/workflows/ci-python.yml index bf28f4f..3c05c64 100644 --- a/.gitea/workflows/ci-python.yml +++ b/.gitea/workflows/ci-python.yml @@ -29,7 +29,7 @@ jobs: - name: Update Pip run: pip install -U pip - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: Define cache for dependencies with: path: .