Skip to content

Commit e9e7ad3

Browse files
committed
chore: Update actions/upload-artifact to v4 in ci.yml
1 parent 8389d93 commit e9e7ad3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
uses: github/codeql-action/analyze@v3
115115
with:
116116
category: "/language:${{matrix.language}}" # defining the language for the CodeQL analysis
117-
- uses: actions/upload-artifact@v3 # uploading the artifact to the GitHub Artifacts. Link to the documentation - https://docs.github.com/en/actions/guides/storing-workflow-data-as-artifacts
117+
- uses: actions/upload-artifact@v4 # uploading the artifact to the GitHub Artifacts. Link to the documentation - https://docs.github.com/en/actions/guides/storing-workflow-data-as-artifacts
118118
with:
119119
name: jar-artifact # naming the artifact jar file/s path
120120
path: target/ # actual relative path to the artifact in the container - target/
@@ -211,7 +211,7 @@ jobs:
211211
mvn -Dtest=$(basename $file | sed -e "s/.java/,/" | tr -d '\r\n') -e test -Dspring.datasource.url=${{ secrets.LIQUIBASE_COMMAND_URL }} -Dspring.datasource.username=${{ secrets.LIQUIBASE_COMMAND_USERNAME }} -Dspring.datasource.password=${{ secrets.LIQUIBASE_COMMAND_PASSWORD }} -Dspring.liquibase.change-log=classpath:db/changelog/changelog_version-3.3.xml -Dserver.port=8086 -Dspring.redis.host=redis -Dspring.redis.port=6379 -Dspring.redis.mode=standalone
212212
done
213213
214-
- uses: actions/upload-artifact@v3 # upload the test results as an artifact
214+
- uses: actions/upload-artifact@v4 # upload the test results as an artifact
215215
with:
216216
name: Test Results
217217
path: ./target/surefire-reports # path to the test results

0 commit comments

Comments
 (0)