From 38e994159e8ef2a40f8fcda763d5b5fa144046c8 Mon Sep 17 00:00:00 2001 From: Rike-Benjamin Schuppner Date: Mon, 16 Oct 2023 23:45:22 +0200 Subject: [PATCH] BLD: Use checkout action v4 --- .github/workflows/build_docs.yml | 2 +- .github/workflows/pypi_release.yml | 2 +- .github/workflows/test_pytest.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index fe1d7d445..49ebdec66 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -10,7 +10,7 @@ jobs: deploy_docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # fetch all history and tags (needed for git describe) - name: Set up Python 3.12 diff --git a/.github/workflows/pypi_release.yml b/.github/workflows/pypi_release.yml index 6a3cff647..8e719fe32 100644 --- a/.github/workflows/pypi_release.yml +++ b/.github/workflows/pypi_release.yml @@ -13,7 +13,7 @@ jobs: name: Build and publish Python distributions to PyPI and TestPyPI runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 3.12 uses: actions/setup-python@v4 diff --git a/.github/workflows/test_pytest.yml b/.github/workflows/test_pytest.yml index 186c70972..d03db8c41 100644 --- a/.github/workflows/test_pytest.yml +++ b/.github/workflows/test_pytest.yml @@ -16,7 +16,7 @@ jobs: timeout-minutes: 15 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -81,7 +81,7 @@ jobs: timeout-minutes: 15 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: