diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0450d32..dea4e771 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 e08fa834..bc5abe96 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 edf54187..04d58274 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 612d3ae6..8c662a57 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