Skip to content

Commit

Permalink
Update deprecated gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
olilarkin committed Jan 25, 2023
1 parent 2fb1912 commit c7bf1b7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

Expand All @@ -51,7 +51,7 @@ jobs:

- name: Add msbuild to PATH (Windows)
if: matrix.os == 'windows-latest'
uses: microsoft/setup-msbuild@v1.0.2
uses: microsoft/setup-msbuild@v1

- name: Build Windows
if: matrix.os == 'windows-latest'
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: ${{env.PROJECT_NAME}}-${{matrix.artifact_ext}}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wam.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3
with:
submodules: recursive
persist-credentials: false
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
upload_url: ${{steps.create_release.outputs.upload_url}}
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

Expand All @@ -68,7 +68,7 @@ jobs:
if: matrix.os == 'macOS-latest'
run: |
ARCHIVE_NAME=`python3 iPlug2/Scripts/get_archive_name.py ${{env.PROJECT_NAME}} mac full`
echo "::set-output name=archive_name::$ARCHIVE_NAME"
echo "name=archive_name::$ARCHIVE_NAME" >> $GITHUB_OUTPUT
shell: bash

- name: Build macOS
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:

- name: Add msbuild to PATH (Windows)
if: matrix.os == 'windows-latest'
uses: microsoft/setup-msbuild@v1.0.2
uses: microsoft/setup-msbuild@v1

- name: Setup Python3
if: matrix.os == 'windows-latest'
Expand All @@ -116,7 +116,7 @@ jobs:
if: matrix.os == 'windows-latest'
run: |
ARCHIVE_NAME=`python.exe iPlug2/Scripts/get_archive_name.py ${{env.PROJECT_NAME}} win full`
echo "::set-output name=archive_name::$ARCHIVE_NAME"
echo "name=archive_name::$ARCHIVE_NAME" >> $GITHUB_OUTPUT
shell: bash

- name: Build Windows
Expand Down

0 comments on commit c7bf1b7

Please sign in to comment.