From 8fec73ebbadc50e761e305f4142ae99b0183f4e3 Mon Sep 17 00:00:00 2001 From: Antoine Nguyen Date: Wed, 24 Apr 2024 07:23:34 +0200 Subject: [PATCH] Updated version numbers in workflow --- .github/workflows/installer.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/installer.yml b/.github/workflows/installer.yml index 5932c98..d90fec6 100644 --- a/.github/workflows/installer.yml +++ b/.github/workflows/installer.yml @@ -15,9 +15,9 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v2 + - 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 }} - name: Install dependencies @@ -33,7 +33,7 @@ jobs: coverage run tests.py - name: Upload coverage result if: ${{ matrix.python-version == '3.11' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: coverage-results path: .coverage @@ -42,16 +42,16 @@ jobs: needs: test 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: Install dependencies run: | pip install codecov - name: Download coverage results - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: coverage-results - name: Report coverage