-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing - Upgrading action script versions #111
Fixing dependabot alert issue with version upgrade
- Loading branch information
Showing
1 changed file
with
12 additions
and
12 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 |
---|---|---|
|
@@ -382,7 +382,7 @@ jobs: | |
|
||
# Step: Download and extract install directory | ||
- name: Download and extract install directory | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: install-windows-x64 | ||
path: install | ||
|
@@ -442,7 +442,7 @@ jobs: | |
|
||
# Step: Download and extract install directory | ||
- name: Download and extract install directory | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: install-windows-clang-x64 | ||
path: install | ||
|
@@ -492,7 +492,7 @@ jobs: | |
# Step: Download and extract install directory | ||
- name: Download and extract install directory | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: install-macos-x64 | ||
path: install | ||
|
@@ -552,7 +552,7 @@ jobs: | |
# Step: Download and extract install directory | ||
- name: Download and extract install directory | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: install-macos-gcc-x64 | ||
path: install | ||
|
@@ -624,7 +624,7 @@ jobs: | |
# Step: Download and extract install directory | ||
- name: Download and extract install directory | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: install-linux-clang-x64 | ||
path: install | ||
|
@@ -697,7 +697,7 @@ jobs: | |
# Step: Download and extract install directory | ||
- name: Download and extract install directory | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: install-linux-gcc-x64 | ||
path: install | ||
|
@@ -745,42 +745,42 @@ jobs: | |
|
||
# Step: Download all test results (Windows x64) | ||
- name: Download all test results (Windows x64) | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: results-windows-x64 | ||
path: results/windows-x64 | ||
|
||
# Step: Download all test results (Windows Clang x64) | ||
- name: Download all test results (Windows Clang x64) | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: results-windows-clang-x64 | ||
path: results/windows-clang-x64 | ||
|
||
# Step: Download all test results (macOS x64) | ||
- name: Download all test results (macOS x64) | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: results-macos-x64 | ||
path: results/macos-x64 | ||
|
||
# Step: Download all test results (macOS GCC x64) | ||
- name: Download all test results (macOS GCC x64) | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: results-macos-gcc-x64 | ||
path: results/macos-gcc-x64 | ||
|
||
# Step: Download all test results (Linux Clang x64) | ||
- name: Download all test results (Linux Clang x64) | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: results-linux-clang-x64 | ||
path: results/linux-clang-x64 | ||
|
||
# Step: Download all test results (Linux GCC x64) | ||
- name: Download all test results (Linux GCC x64) | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: results-linux-gcc-x64 | ||
path: results/linux-gcc-x64 | ||
|