From a01674c720228158fd41ebf8b2eea41c668b2c49 Mon Sep 17 00:00:00 2001 From: Theofilos Manitaras Date: Thu, 2 Feb 2023 14:32:18 +0100 Subject: [PATCH 1/2] Update GitHub Actions to use setup-python@v4 Signed-off-by: Theofilos Manitaras --- .github/workflows/main.yml | 10 +++++----- .github/workflows/publish.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4ee894e6c6..6661373ac7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -56,7 +56,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python 3.9 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: 3.9 - name: Install dependencies @@ -109,7 +109,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup up Python 3.8 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: 3.8 - name: Generate Wheel @@ -129,7 +129,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup up Python 3.8 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: 3.8 - name: Install Doc Requirements diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0d013a2855..c6407ab3fd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup up Python 3.8 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: 3.8 - name: Generate dist packages From 459945bba040047a7058c3ab8b59d676a9452fa7 Mon Sep 17 00:00:00 2001 From: Theofilos Manitaras Date: Thu, 2 Feb 2023 14:42:47 +0100 Subject: [PATCH 2/2] Update the codecov action to version 3 Signed-off-by: Theofilos Manitaras --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6661373ac7..02e987f167 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ jobs: coverage report -m - name: Upload Coverage to Codecov if: matrix.python-version == '3.8' - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 with: fail_ci_if_error: true