Skip to content

Commit 5351485

Browse files
committed
Upgrade actions/download-artifact from v3 to v4 in workflow files
1 parent e0c91b4 commit 5351485

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/angular.azure.web.static.deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Azure Static Web App
1919
url: ${{ steps.azure-deploy.outputs.static_web_app_url }}
2020
steps:
21-
- uses: actions/download-artifact@v3
21+
- uses: actions/download-artifact@v4
2222
with:
2323
name: ${{ inputs.artifact-name }}
2424
- uses: Azure/static-web-apps-deploy@v1

.github/workflows/angular.docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
username: ${{ inputs.dockerhub-username }}
4141
password: ${{ secrets.DOCKERHUB_TOKEN }}
4242
- uses: actions/checkout@v3
43-
- uses: actions/download-artifact@v3
43+
- uses: actions/download-artifact@v4
4444
with:
4545
name: ${{ inputs.artifact-name }}
4646
path: dist/${{ github.event.repository.name }}
@@ -66,7 +66,7 @@ jobs:
6666
username: ${{ github.repository_owner }}
6767
password: ${{ secrets.GITHUB_TOKEN }}
6868
- uses: actions/checkout@v3
69-
- uses: actions/download-artifact@v3
69+
- uses: actions/download-artifact@v4
7070
with:
7171
name: ${{ inputs.artifact-name }}
7272
path: dist/${{ github.event.repository.name }}

.github/workflows/angular.pages.deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
url: ${{ steps.deployment.outputs.page_url }}
2525

2626
steps:
27-
- uses: actions/download-artifact@v3
27+
- uses: actions/download-artifact@v4
2828
with:
2929
name: ${{ inputs.artifact-name }}
3030
- uses: actions/configure-pages@v2

.github/workflows/angular.release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/download-artifact@v3
18+
- uses: actions/download-artifact@v4
1919
with:
2020
name: ${{ inputs.artifact-name }}
2121
- uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)