diff --git a/.github/workflows/ci-integration.yaml b/.github/workflows/ci-integration.yaml index 11607bfd0..fcc3d3aa2 100644 --- a/.github/workflows/ci-integration.yaml +++ b/.github/workflows/ci-integration.yaml @@ -73,7 +73,7 @@ jobs: uv run pytest packages tests --slow --no-docker -m "not test_cases" -r a -v # Upload the scratch and executions directories as artifacts - name: Upload scratch artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: integration-output-${{ matrix.python-version }} @@ -101,7 +101,7 @@ jobs: uv run ref test-cases fetch || echo "Some fetches failed" uv run pytest packages -m test_cases --slow -v -r a - name: Upload test case outputs - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: test-case-outputs diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c8a18779e..d27a268d6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -107,7 +107,7 @@ jobs: env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - name: Upload scratch artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: test-output-providers @@ -190,7 +190,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Set up Docker Compose - uses: docker/setup-compose-action@v1 + uses: docker/setup-compose-action@v2 - uses: ./.github/actions/setup with: python-version: ${{ matrix.python-version }}