diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index d30a5d5..49b9ad7 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -16,12 +16,12 @@ jobs: steps: - name: ⬇️ Set up code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: 🐍 Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: cache: pip cache-dependency-path: setup.py diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2398281..ad1a01e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,12 +14,12 @@ jobs: runs-on: ubuntu-latest steps: - name: ⬇️ Set up code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: 🐍 Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: .python-version cache: pip @@ -29,7 +29,7 @@ jobs: run: pipx run build - name: ⬆️ Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: build-artifacts path: dist @@ -47,7 +47,7 @@ jobs: steps: - name: ⬇️ Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: build-artifacts path: dist