From adf3c125eaded4983154aee13910cd379ea9eb8b Mon Sep 17 00:00:00 2001 From: Lev Gorodetskiy Date: Mon, 24 Jun 2024 12:50:20 -0300 Subject: [PATCH] update GHA --- .github/workflows/build.yml | 4 +--- .github/workflows/docs.yml | 3 --- .github/workflows/release.yml | 8 ++------ .github/workflows/test.yml | 5 ++--- 4 files changed, 5 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0450d32d..dea4e7711 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,9 +36,7 @@ jobs: steps: - name: Check out the repo - uses: actions/checkout@v2 - with: - fetch-depth: 0 + uses: actions/checkout@v4 - name: Set up QEMU uses: docker/setup-qemu-action@v2 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e08fa8344..bc5abe96a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,9 +24,6 @@ jobs: - name: Install poetry run: pipx install poetry - - name: Configure poetry - run: poetry config installer.modern-installation false - - name: Set up Python uses: actions/setup-python@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index edf54187d..04d58274e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,19 +13,15 @@ jobs: run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install poetry run: pipx install poetry - - name: Configure poetry - run: poetry config installer.modern-installation false - - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11" - cache: "poetry" + python-version: "3.12" - name: Install binary dependencies run: OSTYPE=$OSTYPE make install-deps diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 612d3ae62..8c662a572 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,7 +44,7 @@ jobs: # arch: arm64 steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install poetry run: pipx install poetry @@ -53,8 +53,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - # FIXME: temporary - # cache: 'poetry' + cache: 'poetry' - name: Install binary dependencies run: OSTYPE=$OSTYPE make install-deps