diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c213a65..92527f8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,9 +19,9 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: "3.9" @@ -31,7 +31,7 @@ jobs: python -m build - name: Upload distributions - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: release-dists path: dist/ @@ -55,7 +55,7 @@ jobs: steps: - name: Retrieve release distributions - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: release-dists path: dist/ @@ -72,7 +72,7 @@ jobs: contents: write # IMPORTANT: mandatory for making GitHub Releases steps: - name: Retrieve the package from GitHub actions artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: release-dists path: dist/ diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 4116081..14aadff 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -15,8 +15,8 @@ jobs: pre-commit: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v5 + - uses: actions/setup-python@v6 with: python-version: "3.9" - uses: pre-commit/action@v3.0.1 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8b4d4eb..6095087 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,11 +18,11 @@ jobs: simpletests: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Setup Pixi - uses: prefix-dev/setup-pixi@v0.8.4 + uses: prefix-dev/setup-pixi@v0.9.2 with: pixi-version: v0.25.0 environments: default @@ -44,11 +44,11 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Setup Pixi - uses: prefix-dev/setup-pixi@v0.8.4 + uses: prefix-dev/setup-pixi@v0.9.2 with: pixi-version: v0.25.0 environments: ${{ matrix.pixi_environment }} @@ -57,7 +57,7 @@ jobs: env: COVERAGE_FILE: ".coverage.${{ matrix.pixi_environment }}" - name: Store coverage report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage-${{ matrix.pixi_environment }} path: .coverage.${{ matrix.pixi_environment }} @@ -77,9 +77,9 @@ jobs: contents: write steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Retrieve coverage artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 id: download with: pattern: coverage-* @@ -91,7 +91,7 @@ jobs: GITHUB_TOKEN: ${{ github.token }} MERGE_COVERAGE_FILES: true - name: Store Pull Request comment to be posted - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true' with: name: python-coverage-comment-action @@ -100,11 +100,11 @@ jobs: doc: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Setup Pixi - uses: prefix-dev/setup-pixi@v0.8.4 + uses: prefix-dev/setup-pixi@v0.9.2 with: pixi-version: v0.25.0 environments: doc @@ -120,11 +120,11 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Install python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.9" - name: Install build dependencies @@ -136,7 +136,7 @@ jobs: - name: Try installing from the new dists run: pip install dist/*.whl - name: Produce a GitHub actions artifact (the distributable package) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist path: dist/