diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 6bfa805..9d11e1e 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -14,9 +14,9 @@ jobs: python-version: ["3.7"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -39,9 +39,9 @@ jobs: python-version: ["3.8", "3.9", "3.10"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -64,9 +64,9 @@ jobs: python-version: ["3.10"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/README.md b/README.md index a94305a..eb94851 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,7 @@ decorators are extracted from the ast. * Add support for pytest 8 (no actual change, but declare support) ([#46][i46], [#47][p47]) +* Update GitHub actions ([#48][p48]) ## v0.1.1 @@ -229,3 +230,4 @@ decorators are extracted from the ast. [p42]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/42 [p43]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/43 [p47]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/47 +[p48]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/48