From 79d26a400e3015607c9dd85b3726297c0ff9d7ec Mon Sep 17 00:00:00 2001 From: Viggo de Vries Date: Tue, 17 Sep 2024 13:27:03 +0200 Subject: [PATCH] update versions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62adcda0..f5d208d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,11 +10,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: path: ./src - name: Setup Python 3.11 - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.11' - name: Install all dependencies @@ -22,7 +22,7 @@ jobs: - name: Run all linting run: make lint - name: Upload src dir as artefact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: src path: ./src @@ -38,12 +38,12 @@ jobs: oscar-version: ["3.2"] steps: - name: Download src dir - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: src path: ./src - name: Setup Python 3.x - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install all dependencies