diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6d1570940..26c85ce44 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - run: python3 -m pip install --upgrade build && python3 -m build diff --git a/.github/workflows/tox-tests.yml b/.github/workflows/tox-tests.yml index ac96c3480..d3044a8b3 100644 --- a/.github/workflows/tox-tests.yml +++ b/.github/workflows/tox-tests.yml @@ -24,9 +24,9 @@ jobs: python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12, pypy-3.9, pypy-3.10] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 if: ${{ ! startsWith(matrix.python-version, 'pypy-') }} - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 if: ${{ startsWith(matrix.python-version, 'pypy-') }} # Using actions/checkout@v2 or later with pypy causes an error # https://foss.heptapod.net/pypy/pypy/-/issues/3640