Skip to content
This repository was archived by the owner on Apr 16, 2026. It is now read-only.

Commit 8439afd

Browse files
Bump GitHub Actions to upload and download artifacts
Use this link to re-run the recipe: https://app.moderne.io/builder/zibHxXbNf?organizationId=QUxML01vZGVybmUvTW9kZXJuZSArIE9wZW5SZXdyaXRl Co-authored-by: Moderne <team@moderne.io>
1 parent b57e135 commit 8439afd

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Upload Test logs
101101
if: always() # ensures logs are uploaded even if tests fail
102-
uses: actions/upload-artifact@v5
102+
uses: actions/upload-artifact@v6
103103
with:
104104
name: Test Logs
105105
path: |

.github/workflows/comment-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
repository: ${{github.event.workflow_run.head_repository.full_name}}
3030

3131
# Download the patch
32-
- uses: actions/download-artifact@v6
32+
- uses: actions/download-artifact@v7
3333
with:
3434
name: patch
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -40,7 +40,7 @@ jobs:
4040
rm git-diff.patch
4141
4242
# Download the PR number
43-
- uses: actions/download-artifact@v6
43+
- uses: actions/download-artifact@v7
4444
with:
4545
name: pr_number
4646
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/receive-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#using-data-from-the-triggering-workflow
3737
- name: Create pr_number.txt
3838
run: echo "${{ github.event.number }}" > pr_number.txt
39-
- uses: actions/upload-artifact@v5
39+
- uses: actions/upload-artifact@v6
4040
with:
4141
name: pr_number
4242
path: pr_number.txt
@@ -52,7 +52,7 @@ jobs:
5252
- name: Create patch
5353
run: |
5454
git diff | tee git-diff.patch
55-
- uses: actions/upload-artifact@v5
55+
- uses: actions/upload-artifact@v6
5656
with:
5757
name: patch
5858
path: git-diff.patch

0 commit comments

Comments
 (0)