From aa8428c5f71830a5db73a96ad4f41ba821ab3bbb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 1 Apr 2024 00:32:20 +0000 Subject: [PATCH] Update GitHub Action Versions --- .github/workflows/base.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index e4f7b147..051bb365 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -26,7 +26,7 @@ jobs: uses: actions/checkout@v4.1.1 - name: Install python 3.9 - uses: actions/setup-python@v5.0.0 + uses: actions/setup-python@v5.1.0 with: python-version: 3.9 architecture: x64 @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@v4.1.1 - name: Install python ${{ matrix.nox_session.python }} for tests - uses: MatteoH2O1999/setup-python@v3.0.0 # actions/setup-python@v5.0.0 + uses: MatteoH2O1999/setup-python@v3.2.0 # actions/setup-python@v5.1.0 id: set-py with: python-version: ${{ matrix.nox_session.python }} @@ -69,7 +69,7 @@ jobs: cache-build: true - name: Install python 3.12 for nox - uses: actions/setup-python@v5.0.0 + uses: actions/setup-python@v5.1.0 with: python-version: 3.12 architecture: x64 @@ -88,7 +88,7 @@ jobs: # Share ./docs/reports so that they can be deployed with doc in next job - name: Share reports with other jobs # if: matrix.nox_session == '...': not needed, if empty won't be shared - uses: actions/upload-artifact@v4.3.0 + uses: actions/upload-artifact@v4.3.1 with: name: reports_dir path: ./docs/reports @@ -101,7 +101,7 @@ jobs: uses: actions/checkout@v4.1.1 - name: Install python 3.9 for nox - uses: actions/setup-python@v5.0.0 + uses: actions/setup-python@v5.1.0 with: python-version: 3.9 architecture: x64 @@ -128,14 +128,14 @@ jobs: fetch-depth: 0 # so that gh-deploy works - name: Install python 3.9 for nox - uses: actions/setup-python@v5.0.0 + uses: actions/setup-python@v5.1.0 with: python-version: 3.9 architecture: x64 # 1) retrieve the reports generated previously - name: Retrieve reports - uses: actions/download-artifact@v4.1.1 + uses: actions/download-artifact@v4.1.4 with: name: reports_dir path: ./docs/reports @@ -167,7 +167,7 @@ jobs: EOF - name: \[not on TAG\] Publish coverage report if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads') - uses: codecov/codecov-action@v4.0.1 + uses: codecov/codecov-action@v4.1.1 with: files: ./docs/reports/coverage/coverage.xml @@ -181,7 +181,7 @@ jobs: # 8) Publish the wheel on PyPi - name: \[TAG only\] Deploy on PyPi if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@v1.8.11 + uses: pypa/gh-action-pypi-publish@v1.8.14 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}