Skip to content

Commit

Permalink
up to v4 for action
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioettorre committed Feb 7, 2024
1 parent d25d1f4 commit 920da85
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/windows_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
GIT_COMMIT_SHA: ${{ github.sha }}
steps:
- name: Clone Repository (Latest)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event.inputs.git-ref == ''
- name: Clone Repository (Custom Ref)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event.inputs.git-ref != ''
with:
ref: ${{ github.event.inputs.git-ref }}
Expand All @@ -51,7 +51,7 @@ jobs:
bash -x ci/windows_package.sh
#
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Installer
path: /home/runner/work/oq-builders/oq-builders/out
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Download Windows Installer from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Installer
- name: Execute the Installer
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
oq.exe engine --list-risk-calculations
curl.exe -v --fail -G http://127.0.0.1:8800/engine/1/outputs
- name: Upload Artifact WebUI log
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: WebUI_log
path: webui.log
Expand All @@ -113,9 +113,9 @@ jobs:
needs: Test_OQ
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download Windows Installer from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Installer
- name: rsync to downloads.openquake.org
Expand Down

0 comments on commit 920da85

Please sign in to comment.