From 92863676077ae483f0f68cb1fe2c54aaf8eb7b5f Mon Sep 17 00:00:00 2001 From: Jan Gosmann Date: Sun, 27 Oct 2024 11:43:16 +0100 Subject: [PATCH] Update actions in CI pipeline --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1836aaf..0dd447c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,18 +23,18 @@ jobs: - python-version: "3.13" pylint-version: "" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4.3.0 + uses: actions/setup-python@v5.3.0 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v3.0.11 + - uses: actions/cache@v4.1.2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip - - uses: actions/cache@v3.0.11 + - uses: actions/cache@v4.1.2 with: path: .venv key: ${{ runner.os }}-py${{ matrix.python-version }}-pylint${{ matrix.pylint-version }}-venv-${{ hashFiles('pyproject.toml') }} @@ -61,14 +61,14 @@ jobs: needs: [test] if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4.3.0 with: python-version: '3.13' - - uses: actions/cache@v3.0.11 + - uses: actions/cache@v4.1.2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip