From affb82c8e604860ef5f1b3b09243de77698e36db Mon Sep 17 00:00:00 2001 From: Sigurd Spieckermann Date: Wed, 27 Mar 2024 13:49:39 +0100 Subject: [PATCH] Update GitHub actions --- .github/workflows/cicd.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 9382f64..c2b9419 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -12,9 +12,9 @@ jobs: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - run: pip install -U pip poetry @@ -29,10 +29,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python if: startsWith(github.event.ref, 'refs/tags') - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: "3.12" - run: pip install -U pip poetry