-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change artifact upload/download to v4. For #727
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- uses: krdlab/[email protected] | ||
with: | ||
|
@@ -82,7 +82,7 @@ jobs: | |
- name: Archive Linux Results | ||
if: startsWith(matrix.os,'ubuntu') | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: linux-64 | ||
path: | | ||
|
@@ -118,7 +118,7 @@ jobs: | |
- name: Archive Windows Results | ||
if: startsWith(matrix.os,'windows') | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: windows-64 | ||
path: | | ||
|
@@ -127,7 +127,7 @@ jobs: | |
- name: Archive Mac Results | ||
if: startsWith(matrix.os,'macos') | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: mac-64 | ||
path: | | ||
|
@@ -139,19 +139,19 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Linux | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: linux-64 | ||
path: nme | ||
|
||
- name: Download Mac | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: mac-64 | ||
path: nme | ||
|
||
- name: Download Windows | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: windows-64 | ||
path: nme | ||
|