Skip to content

Commit 36e42a9

Browse files
build: bump actions/upload-artifact from 4 to 5 (#509)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 96ac220 commit 36e42a9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: ./gradlew buildPlugin --exclude-task test
3838

3939
- name: Upload Assets
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v5
4141
with:
4242
name: ddev-intellij-plugin
4343
path: build/distributions/*.zip

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040

4141
- name: Upload Test Report
4242
if: ${{ always() }}
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
with:
4545
name: test-report-${{ matrix.os }}
4646
path: build/reports/tests/test
4747

4848
- name: Upload HTML test coverage report
4949
if: ${{ matrix.os == 'ubuntu-latest' && always() }}
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v5
5151
with:
5252
name: coverage-report
5353
path: build/reports/jacoco/test/html

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: ./gradlew verifyPlugin --stacktrace --info
3939

4040
- name: Upload Report
41-
uses: actions/upload-artifact@v4
41+
uses: actions/upload-artifact@v5
4242
with:
4343
name: test-report-${{ matrix.os }}
4444
path: build/reports/pluginVerifier

0 commit comments

Comments
 (0)