diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 228032a..f0d210a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,11 +15,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.10" - name: Install build dependencies @@ -47,7 +47,7 @@ jobs: id-token: write # This permission is mandatory for trusted publishing steps: - name: Retrieve the package from GitHub actions artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: release-dist path: dist @@ -63,7 +63,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@v5 with: name: release-dist path: dist diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index c904565..931446c 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -15,9 +15,9 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.11" - name: Run pre-commit diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5323048..4725ceb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Setup Pixi @@ -56,9 +56,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@v5 id: download with: pattern: coverage-* @@ -80,7 +80,7 @@ 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 @@ -98,11 +98,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.11" - name: Install build dependencies