CI - Use Node.js 20 actions (#9809)

This commit is contained in:
jonpas 2024-02-29 04:54:08 +01:00 committed by GitHub
parent 8a67744cd4
commit 6de7d60636
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 8 additions and 8 deletions

View File

@ -48,7 +48,7 @@ jobs:
- name: Rename build folder - name: Rename build folder
run: mv .hemttout/build .hemttout/@ace run: mv .hemttout/build .hemttout/@ace
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: ace3-${{ github.sha }}-nobin name: ace3-${{ github.sha }}-nobin
path: .hemttout/@* path: .hemttout/@*

View File

@ -47,7 +47,7 @@ jobs:
destination: docs/_site/ destination: docs/_site/
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: jekyll-site name: jekyll-site
path: docs/_site/ path: docs/_site/
@ -63,7 +63,7 @@ jobs:
steps: steps:
- name: Download Artifacts - name: Download Artifacts
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
name: jekyll-site name: jekyll-site
path: _site/ path: _site/

View File

@ -23,7 +23,7 @@ jobs:
cd build cd build
cmake .. && cmake --build . cmake .. && cmake --build .
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: ace3_extensions-${{ matrix.os }}-debug name: ace3_extensions-${{ matrix.os }}-debug
path: extensions/build path: extensions/build

View File

@ -38,7 +38,7 @@ jobs:
- name: Rename build folder - name: Rename build folder
run: mv .hemttout/build .hemttout/@ace run: mv .hemttout/build .hemttout/@ace
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: ace3-${{ github.sha }} name: ace3-${{ github.sha }}
path: .hemttout/@* path: .hemttout/@*

View File

@ -73,13 +73,13 @@ jobs:
env: env:
PYTHONUNBUFFERED: 1 PYTHONUNBUFFERED: 1
- name: Archive logs - name: Archive logs
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
if: ${{ always() }} if: ${{ always() }}
with: with:
name: logs name: logs
path: temp/*.log path: temp/*.log
- name: Archive @ace - name: Archive @ace
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: '@ace3-${{ github.sha }}' name: '@ace3-${{ github.sha }}'
path: z\ace\release\@ace path: z\ace\release\@ace

View File

@ -11,6 +11,6 @@ jobs:
steps: steps:
- name: Release Drafter - name: Release Drafter
if: github.repository == 'acemod/ACE3' if: github.repository == 'acemod/ACE3'
uses: release-drafter/release-drafter@v5 uses: release-drafter/release-drafter@v6
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}