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

chore(deps): update actions/upload-artifact action to v4.3.3 #19

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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