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

build(deps): bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #109

Open
wants to merge 1 commit into
base: develop
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
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
mkdir -p ${{ steps.get_tagname.outputs.TAGNAME }}/dist/

- name: Download JSDoc artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: jsdoc
path: tmp/jsdoc/
Expand All @@ -133,13 +133,13 @@ jobs:
cp -r tmp/jsdoc/ ${{ steps.get_tagname.outputs.TAGNAME }}

- name: Download Binary 2D artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: dist-2d
path: tmp/dist/2d/

- name: Download Binary 2D artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: dist-3d
path: tmp/dist/3d/
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
prerelease: false

- name: Download bundles 2D artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: bundles-2d

Expand All @@ -225,7 +225,7 @@ jobs:
asset_content_type: application/zip

- name: Download bundles 3D artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: bundles-3d

Expand Down Expand Up @@ -264,13 +264,13 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: Download Package 2D artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: package-2d
path: package-2d

- name: Download Package 3D artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: package-3d
path: package-3d
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
token: ${{ secrets.ADMIN_GEOPORTAL_TOKEN }}

- name: Download ChangeLog artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: changelog

Expand Down
Loading