diff --git a/.github/workflows/e2e-cache.yml b/.github/workflows/e2e-cache.yml index 1e5dec8..c073e25 100644 --- a/.github/workflows/e2e-cache.yml +++ b/.github/workflows/e2e-cache.yml @@ -45,6 +45,9 @@ jobs: exclude: - os: windows-latest python-version: pypy-3.11-v7.x + - os: macos-latest + python-version: pypy-3.9-v7.x + steps: - uses: actions/checkout@v5 - name: Setup Python @@ -183,6 +186,8 @@ jobs: exclude: - os: windows-latest python-version: pypy-3.11-v7.x + - os: macos-latest + python-version: pypy-3.9-v7.x steps: - uses: actions/checkout@v5 - name: Setup Python diff --git a/README.md b/README.md index 173c097..cb53f25 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,13 @@ This action provides the following functionality for GitHub Actions users: - Optionally caching dependencies for pip, pipenv and poetry - Registering problem matchers for error output +## Breaking changes in V6 + +- Upgraded action from node20 to node24 + > Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See [Release Notes](https://github.com/actions/runner/releases/tag/v2.327.1) + +For more details, see the full release notes on the [releases page](https://github.com/actions/setup-python/releases/tag/v6.0.0) + ## Basic usage See [action.yml](action.yml) diff --git a/__tests__/data/requirements-linux.txt b/__tests__/data/requirements-linux.txt index 0e93594..3d64b58 100644 --- a/__tests__/data/requirements-linux.txt +++ b/__tests__/data/requirements-linux.txt @@ -8,5 +8,5 @@ packaging==20.7 pdf2image==1.12.1 Pygments==2.6.1 requests==2.32.2 -urllib3==1.26.19 +urllib3==2.5.0 xlrd==1.2.0 \ No newline at end of file diff --git a/__tests__/data/requirements.txt b/__tests__/data/requirements.txt index cfe5ff8..4c3f0ba 100644 --- a/__tests__/data/requirements.txt +++ b/__tests__/data/requirements.txt @@ -42,6 +42,6 @@ pywin32-ctypes==0.2.0 requests==2.32.2 -urllib3==1.26.19 +urllib3==2.5.0 xlrd==1.2.0 \ No newline at end of file