Update starter workflows to use the latest artifact actions (#2726)

* Update starter workflows to use the latest artifact actions

* Ensure incompatible artifact actions aren't synced to GHES
This commit is contained in:
Josh Gross
2025-01-21 15:06:02 -05:00
committed by GitHub
parent f480e98459
commit 1e05f3c86d
10 changed files with 36 additions and 15 deletions
+2 -2
View File
@@ -50,7 +50,7 @@ jobs:
run: mvn clean install
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: java-app
path: '${{ github.workspace }}/target/*.jar'
@@ -66,7 +66,7 @@ jobs:
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: java-app