diff --git a/.github/workflows/backport-trigger.yml b/.github/workflows/backport-trigger.yml index 3b3758c573b..b6263775da3 100644 --- a/.github/workflows/backport-trigger.yml +++ b/.github/workflows/backport-trigger.yml @@ -40,7 +40,7 @@ jobs: }' "$GITHUB_EVENT_PATH" > /tmp/pr_info.json - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: pr_info path: /tmp/pr_info.json diff --git a/.github/workflows/core-plugins-build-and-release.yml b/.github/workflows/core-plugins-build-and-release.yml index de8835420a3..5a4133442a7 100644 --- a/.github/workflows/core-plugins-build-and-release.yml +++ b/.github/workflows/core-plugins-build-and-release.yml @@ -193,7 +193,7 @@ jobs: exit 1 fi - name: store build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: build-artifacts path: ${{ steps.get_dir.outputs.dir }}/ci/packages/*.zip diff --git a/.github/workflows/detect-breaking-changes-levitate.yml b/.github/workflows/detect-breaking-changes-levitate.yml index cd2c123e472..eff55077d7c 100644 --- a/.github/workflows/detect-breaking-changes-levitate.yml +++ b/.github/workflows/detect-breaking-changes-levitate.yml @@ -64,7 +64,7 @@ jobs: run: zip -r ./pr_built_packages.zip ./packages/**/*.tgz - name: Upload build output as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: buildPr path: './pr/pr_built_packages.zip' @@ -116,7 +116,7 @@ jobs: run: zip -r ./base_built_packages.zip ./packages/**/*.tgz - name: Upload build output as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: buildBase path: './base/base_built_packages.zip' @@ -189,7 +189,7 @@ jobs: PR_NUMBER: ${{ github.event.pull_request.number }} - name: Upload check output as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: levitate path: levitate/ diff --git a/.github/workflows/pr-e2e-tests.yml b/.github/workflows/pr-e2e-tests.yml index 30bfc4705ad..cf69dde2c93 100644 --- a/.github/workflows/pr-e2e-tests.yml +++ b/.github/workflows/pr-e2e-tests.yml @@ -94,14 +94,14 @@ jobs: id: artifact - name: Upload grafana.tar.gz - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: retention-days: 1 name: grafana-tar-gz path: build-dir/grafana.tar.gz - name: Upload grafana docker tarball - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: retention-days: 1 name: grafana-docker-tar-gz @@ -133,7 +133,7 @@ jobs: # We want a static binary, so we need to set CGO_ENABLED=0 CGO_ENABLED=0 go build -o ./e2e-runner ./e2e/ echo "artifact=e2e-runner-${{github.run_number}}" >> "$GITHUB_OUTPUT" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 id: upload with: retention-days: 1 @@ -245,7 +245,7 @@ jobs: run: | set -euo pipefail echo "suite=$(echo "$SUITE" | sed 's/\//-/g')" >> "$GITHUB_OUTPUT" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: success() || failure() with: name: ${{ steps.set-suite-name.outputs.suite }}-${{ github.run_number }} @@ -307,7 +307,7 @@ jobs: version: 0.18.8 verb: run args: go run ./pkg/build/e2e-playwright --package=grafana.tar.gz --shard=${{ matrix.shard }}/${{ matrix.shardTotal }} --blob-dir=./blob-report - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: success() || failure() with: name: playwright-blob-${{ github.run_number }}-${{ matrix.shard }} @@ -439,7 +439,7 @@ jobs: - name: Upload HTML report id: upload-html - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: playwright-html-${{ github.run_number }} path: playwright-report @@ -498,7 +498,7 @@ jobs: args: go run ./pkg/build/a11y --package=grafana.tar.gz --no-threshold-fail --results=./pa11y-ci-results.json - name: Upload pa11y results if: github.event_name != 'pull_request' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: retention-days: 1 name: pa11y-ci-results diff --git a/.github/workflows/pr-test-integration.yml b/.github/workflows/pr-test-integration.yml index 1ff72f78b17..356f7a02b2b 100644 --- a/.github/workflows/pr-test-integration.yml +++ b/.github/workflows/pr-test-integration.yml @@ -152,7 +152,7 @@ jobs: done exit $EXIT_CODE - name: Output test profiles and traces - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 + uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4 if: (matrix.shard == 'profiled' && !cancelled()) with: name: integration-test-profiles-sqlite-nocgo-${{ github.run_number }} diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 435fc8b6849..9430cb083ab 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -187,12 +187,12 @@ jobs: output: artifacts-${{ matrix.name }}.txt verify: ${{ matrix.verify }} build-id: ${{ github.run_id }} - - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 + - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 with: name: artifacts-list-${{ matrix.name }} path: ${{ steps.build.outputs.file }} retention-days: 1 - - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 + - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 with: name: artifacts-${{ matrix.name }} path: ${{ steps.build.outputs.dist-dir }}