mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-04-05 04:44:16 +02:00
Use Node20 compatible actions
This commit is contained in:
parent
b61360999f
commit
16ad71d983
2 changed files with 2 additions and 3 deletions
3
.github/actions/build-dist/action.yml
vendored
3
.github/actions/build-dist/action.yml
vendored
|
@ -14,8 +14,7 @@ runs:
|
||||||
npm install
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
- name: Upload distribution
|
- name: Upload distribution
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
path: dist/
|
path: dist/
|
||||||
|
|
||||||
|
|
2
.github/actions/download-dist/action.yml
vendored
2
.github/actions/download-dist/action.yml
vendored
|
@ -6,7 +6,7 @@ runs:
|
||||||
steps:
|
steps:
|
||||||
- name: Download dist
|
- name: Download dist
|
||||||
if: ${{ env.DOWNLOAD_DIST == 'true' }}
|
if: ${{ env.DOWNLOAD_DIST == 'true' }}
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
path: dist/
|
path: dist/
|
||||||
|
|
Loading…
Add table
Reference in a new issue