Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
chore(deps): update actions/upload-artifact action to v4.3.3 (#19)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Apr 22, 2024
1 parent e65f9e1 commit e3acb66
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Compile project
run: ./gradlew --no-daemon --warning-mode=all --info --configuration-cache --build-cache classes testClasses integrationTestsClasses assemble
- name: Upload server jar as an artifact
uses: actions/upload-artifact@v4.3.2
uses: actions/upload-artifact@v4.3.3
with:
name: jar-${{ env.GITHUB_SHA }}
path: |
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Run unit tests
run: ./gradlew --no-daemon --warning-mode=all --info --configuration-cache --build-cache testClasses test
- name: Upload unit tests result as an artifact
uses: actions/upload-artifact@v4.3.2
uses: actions/upload-artifact@v4.3.3
with:
name: tests-unit-${{ env.GITHUB_SHA }}
path: |
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- name: Run integration tests
run: ./gradlew --no-daemon --warning-mode=all --info --configuration-cache --build-cache integrationTestsClasses integration-tests
- name: Upload integration tests result as an artifact
uses: actions/upload-artifact@v4.3.2
uses: actions/upload-artifact@v4.3.3
with:
name: tests-integration-${{ env.GITHUB_SHA }}
path: |
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
- name: Run detekt
run: ./gradlew --no-daemon --warning-mode=all --info --configuration-cache --build-cache detekt
- name: Upload detekt report as an artifact
uses: actions/upload-artifact@v4.3.2
uses: actions/upload-artifact@v4.3.3
with:
name: detekt-${{ env.GITHUB_SHA }}
path: "**/build/reports/detekt/detekt.xml"
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
- name: Run jacoco
run: ./gradlew --no-daemon --warning-mode=all --info --configuration-cache --build-cache jacocoTestReport
- name: Upload jacoco coverage report as an artifact
uses: actions/upload-artifact@v4.3.2
uses: actions/upload-artifact@v4.3.3
with:
name: jacoco-coverage-${{ env.GITHUB_SHA }}
path: "**/build/reports/jacoco/test/jacocoTestReport.xml"
Expand Down

0 comments on commit e3acb66

Please sign in to comment.