Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/upload-artifact from 3.2.1 to 4.5.0 #60

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
java -jar ${{ env.SWAGGER_CODEGEN_CLI_LOCAL_JAR }} generate -i ${{ env.SWAGGER_API_FILE }} -l go -o ${{ env.OUT_GO }}

- name: Archive generated GO code
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v3
with:
name: go-api
path: ${{ env.OUT_GO }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
ls -rotl ${OUT_JAVA}

- name: Archive generated JAVA code
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v3
with:
name: java-api
path: ${{ env.OUT_JAVA }}
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
# - name: Generate NPM package details
# run: |
- name: Archive generated NodeJS code
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v3
with:
name: nodejs-server
path: ${{ env.OUT_NODEJS }}
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
echo "buildRoot=${PWD}" >> $GITHUB_ENV

- name: Publish Java client jar
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v3
with:
name: java-client
path: ${{ env.buildRoot }}/build/libs/*.jar
Expand All @@ -192,7 +192,7 @@ jobs:
echo "targetRoot=${PWD}/target" >> $GITHUB_ENV

- name: Publish packaged Java client jar
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v3
with:
name: java-client-package
path: |
Expand Down Expand Up @@ -436,7 +436,7 @@ jobs:
echo "buildRoot=${PWD}" >> $GITHUB_ENV
popd
- name: Publish chaincode jar
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v3
with:
name: lightswitch-chaincode
path: |
Expand Down
Loading