diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 7701b618..2b71f633 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -13,9 +13,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v5.0.0 - name: Set up Python - uses: actions/setup-python@v5.6.0 + uses: actions/setup-python@v6.0.0 with: python-version: '3.11' - name: Install dependencies diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9272c004..2b116b88 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,10 +36,10 @@ jobs: - name: Checkout the repo - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5.6.0 + uses: actions/setup-python@v6.0.0 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -113,12 +113,12 @@ jobs: needs: tests # Ensure this job runs after all matrix jobs complete steps: # switch to badges branches to commit - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v5.0.0 with: ref: badges - name: Download badges - uses: actions/download-artifact@v4.3.0 + uses: actions/download-artifact@v5.0.0 - name: Reorganize badges run: | @@ -137,7 +137,7 @@ jobs: git commit --allow-empty -m "Add/Update badge" - name: Push badges - uses: ad-m/github-push-action@v0.8.0 + uses: ad-m/github-push-action@v1.0.0 if: ${{ success() }} with: github_token: ${{ secrets.GITHUB_TOKEN }} @@ -148,10 +148,10 @@ jobs: steps: - name: Checkout the repo - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 - name: Download all coverage artifacts - uses: actions/download-artifact@v4.3.0 + uses: actions/download-artifact@v5.0.0 with: path: ./coverage-reports @@ -172,7 +172,7 @@ jobs: coverage xml -i - name: Upload combined coverage report to Codecov - uses: codecov/codecov-action@v5.4.3 + uses: codecov/codecov-action@v5.5.1 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml \ No newline at end of file diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml index 3897d6a1..3779789f 100644 --- a/.github/workflows/updater.yml +++ b/.github/workflows/updater.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v5.0.0 with: # [Required] Access token with `workflow` scope. token: ${{ secrets.WORKFLOW_SECRET }}