diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b58653bd7..818280d00e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -229,7 +229,7 @@ jobs: [[ "${version}" != "${downgraded_version}" ]] - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-bin-${{ github.job }} path: | @@ -262,7 +262,7 @@ jobs: - name: Cache requirements if: matrix.cache_requirements id: cache-venv - uses: actions/cache@v4 + uses: actions/cache@v5 env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 with: @@ -300,7 +300,7 @@ jobs: docker compose up --build --exit-code-from "${SERVICE}" "${SERVICE}" - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-bin-${{ matrix.os }}_${{ matrix.arch }} path: | @@ -325,7 +325,7 @@ jobs: - name: Cache requirements id: cache-venv - uses: actions/cache@v4 + uses: actions/cache@v5 env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 with: @@ -399,7 +399,7 @@ jobs: [[ "$version" != "$downgraded_version" ]] - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-bin-${{ github.job }} path: | @@ -459,7 +459,7 @@ jobs: - name: Cache requirements id: cache-venv if: matrix.arch == 'arm64' - uses: actions/cache@v4 + uses: actions/cache@v5 env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 with: @@ -519,7 +519,7 @@ jobs: } - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-bin-${{ github.job }}-${{ matrix.arch }} path: | @@ -538,7 +538,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download artifacts - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v7 with: path: artifact pattern: build-bin-* @@ -606,7 +606,7 @@ jobs: done - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-${{ github.job }} path: | diff --git a/.github/workflows/release-master.yml b/.github/workflows/release-master.yml index f44da792f8..d13a6d2da1 100644 --- a/.github/workflows/release-master.yml +++ b/.github/workflows/release-master.yml @@ -38,7 +38,7 @@ jobs: id-token: write # mandatory for trusted publishing steps: - name: Download artifacts - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v7 with: path: dist name: build-pypi diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index ac7e8cc675..f4e806a219 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -53,7 +53,7 @@ jobs: id-token: write # mandatory for trusted publishing steps: - name: Download artifacts - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v7 with: path: dist name: build-pypi diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e9facc0430..b99ff4bfd0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -209,7 +209,7 @@ jobs: - name: Upload artifacts if: github.event_name != 'workflow_dispatch' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-pypi path: | @@ -236,7 +236,7 @@ jobs: - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v7 with: path: artifact pattern: build-*