From ea5730c93047cb07b657d9472ae077514b83d2d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 09:48:33 +0200 Subject: [PATCH] build(deps): bump actions/checkout from 3 to 4 (#28) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jirka Borovec <6035284+Borda@users.noreply.github.com> --- .github/workflows/ci-testing.yml | 2 +- .github/workflows/cleanup-caches.yml | 2 +- .github/workflows/docs-deploy.yml | 4 ++-- .github/workflows/release-pypi.yml | 2 +- requirements.txt | 2 ++ 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 7f15267..5bf808f 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -26,7 +26,7 @@ jobs: timeout-minutes: 35 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: diff --git a/.github/workflows/cleanup-caches.yml b/.github/workflows/cleanup-caches.yml index ca6d81a..77ad7c6 100644 --- a/.github/workflows/cleanup-caches.yml +++ b/.github/workflows/cleanup-caches.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cleanup run: | diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml index 6749454..e4d7729 100644 --- a/.github/workflows/docs-deploy.yml +++ b/.github/workflows/docs-deploy.yml @@ -11,8 +11,8 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout 🛎️ - uses: actions/checkout@v3 - # If you're using actions/checkout@v3 you must set persist-credentials to false in most cases for the deployment to work correctly. + uses: actions/checkout@v4 + # If you're using actions/checkout@v4 you must set persist-credentials to false in most cases for the deployment to work correctly. with: persist-credentials: false - uses: actions/setup-python@v4 diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index 11ac699..4d249e1 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: 3.8 diff --git a/requirements.txt b/requirements.txt index 0686e1e..865c6b7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,4 @@ lightning >=2.0.0 hivemind >=1.1.0, <=1.1.5; sys_platform == 'linux' + +pydantic <2.0.0 # fixme: lift when resolved