diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c78353c..a0075cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,7 +109,7 @@ jobs: - name: Post coverage comment if: github.event_name == 'pull_request' continue-on-error: true - uses: marocchino/sticky-pull-request-comment@v2 + uses: marocchino/sticky-pull-request-comment@v3 with: header: coverage path: coverage-comment.md @@ -135,7 +135,7 @@ jobs: run: pip install build - name: Build distributions run: python -m build - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: dist path: dist/ diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2ffb06a..75176d4 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -30,7 +30,7 @@ jobs: - name: Build API documentation run: python scripts/gen_docs.py --output site - name: Upload Pages artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: site @@ -46,4 +46,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 25f5cc2..eaadc83 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,7 @@ jobs: run: pip install build - name: Build distributions run: python -m build - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: dist path: dist/ @@ -50,7 +50,7 @@ jobs: permissions: id-token: write steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: dist path: dist/ diff --git a/warpedpinball/__init__.py b/warpedpinball/__init__.py index 392eda2..ce16e6f 100644 --- a/warpedpinball/__init__.py +++ b/warpedpinball/__init__.py @@ -33,7 +33,7 @@ from .origin import OriginAuthError from .transports.http import HttpTransport -__version__ = "0.3.0" +__version__ = "0.3.1" __all__ = [ "connect",