Skip to content

Commit de61490

Browse files
build(deps): bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4c722b3 commit de61490

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/aider-issue-to-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ jobs:
219219
220220
console.log(`Created PR #${newPR.data.number}: ${newPR.data.html_url}`);
221221
- name: Upload aider chat history
222-
uses: actions/upload-artifact@v4
222+
uses: actions/upload-artifact@v5
223223
with:
224224
name: aider-chat-output
225225
path: ".aider.chat.history.md"

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,23 +104,23 @@ jobs:
104104

105105
- name: Upload Playwright Report
106106
if: ${{ !cancelled() }}
107-
uses: actions/upload-artifact@v4
107+
uses: actions/upload-artifact@v5
108108
with:
109109
name: playwright-report-${{ matrix.test }}
110110
path: reports/html-report/
111111
retention-days: ${{ env.RETENTION_DAYS }}
112112

113113
- name: Upload Allure Report
114114
if: ${{ !cancelled() }}
115-
uses: actions/upload-artifact@v4
115+
uses: actions/upload-artifact@v5
116116
with:
117117
name: allure-report-${{ matrix.test }}
118118
path: allure-report/
119119
retention-days: ${{ env.RETENTION_DAYS }}
120120

121121
- name: Upload Accessibility Reports
122122
if: ${{ matrix.test == 'a11y' && !cancelled() }}
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
with:
125125
name: accessibility-report
126126
path: reports/accessibility-reports/

0 commit comments

Comments
 (0)