Skip to content

Commit

Permalink
BREAKING Upgrade actions/download-artifact from v2 to v4 (#23)
Browse files Browse the repository at this point in the history
`actions/download-artifact@v4` requires artifacts that were uploaded
with `actions/upload-artifact@v4`, so all consumers of this library must
also upgrade.

This PR follows from pulumi/ci-mgmt#818.
  • Loading branch information
iwahbe authored Feb 14, 2024
1 parent 5cf6574 commit 4cbb25e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lang/dotnet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
with:
dotnet-version: ${{ env.DOTNETVERSION }}
- name: Download dotnet SDK
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: dotnet-sdk.tar.gz
path: ${{ github.workspace }}/sdk/
Expand Down
2 changes: 1 addition & 1 deletion lang/java/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
with:
gradle-version: "7.6"
- name: Download java SDK
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: java-sdk.tar.gz
path: ${{ github.workspace}}/sdk/
Expand Down
2 changes: 1 addition & 1 deletion lang/nodejs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
node-version: ${{ env.NODEVERSION }}
registry-url: https://registry.npmjs.org
- name: Download nodejs SDK
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: nodejs-sdk.tar.gz
path: ${{ github.workspace }}/sdk/
Expand Down
2 changes: 1 addition & 1 deletion lang/python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
with:
python-version: ${{ env.PYTHONVERSION }}
- name: Download python SDK
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: python-sdk.tar.gz
path: ${{ github.workspace }}/sdk/
Expand Down

0 comments on commit 4cbb25e

Please sign in to comment.