From 822a292b8e9054ac00afbe1266ae62ab815a16d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 07:37:46 +0000 Subject: [PATCH 1/2] Bump actions/upload-artifact from 4.6.2 to 7.0.1 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.2 to 7.0.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/ea165f8d65b6e75b540449e92b4886f43607fa02...043fb46d1a93c77aae656e7c1c64a875d1fc6a0a) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/corpus-diff.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/corpus-diff.yml b/.github/workflows/corpus-diff.yml index 07ff734..e8a9746 100644 --- a/.github/workflows/corpus-diff.yml +++ b/.github/workflows/corpus-diff.yml @@ -139,7 +139,7 @@ jobs: - name: Upload diff id: upload if: always() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: corpus.diff path: corpus.diff @@ -156,7 +156,7 @@ jobs: - name: Upload rendered report if: always() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: corpus-diff-comment path: comment.md From f800f2a443969a9c657413c7372873d8a022190b Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Mon, 24 Aug 2026 11:37:28 +0400 Subject: [PATCH 2/2] Use direct uploads for corpus artifacts --- .github/workflows/corpus-diff.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/corpus-diff.yml b/.github/workflows/corpus-diff.yml index e8a9746..8305537 100644 --- a/.github/workflows/corpus-diff.yml +++ b/.github/workflows/corpus-diff.yml @@ -141,8 +141,8 @@ jobs: if: always() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: corpus.diff path: corpus.diff + archive: false if-no-files-found: ignore - name: Render report @@ -158,8 +158,8 @@ jobs: if: always() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: corpus-diff-comment path: comment.md + archive: false if-no-files-found: ignore comment: @@ -172,9 +172,9 @@ jobs: steps: - name: Download rendered report - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: corpus-diff-comment + name: comment.md # Create the comment on the first run and update it on every later one, # so the PR carries one report that reflects the latest push.