Skip to content

Commit

Permalink
Fix/Actions: User v4
Browse files Browse the repository at this point in the history
  • Loading branch information
TwinFan committed Jan 28, 2024
1 parent ba18171 commit 502f39b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Code
uses: actions/checkout@v3 # must checkout before we can use our own actions
uses: actions/checkout@v4 # must checkout before we can use our own actions
- name: Build
uses: ./.github/actions/build-lin
id: build
Expand All @@ -37,7 +37,7 @@ jobs:
cp -a ./inc deploy-lib
mv ${{ steps.build.outputs.lib-file-name }} deploy-lib/lib/lin
- name: Upload XPMP2 lib
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: XPMP2-lib
path: deploy-lib/* # this way we keep the folder structure in the artifact
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: macos-11
steps:
- name: Checkout Code
uses: actions/checkout@v3 # must checkout before we can use our own actions
uses: actions/checkout@v4 # must checkout before we can use our own actions
- name: Build
uses: ./.github/actions/build-mac
id: build
Expand All @@ -62,7 +62,7 @@ jobs:
mkdir -p deploy-lib/lib
mv ${{ steps.build.outputs.lib-file-name }} deploy-lib/lib
- name: Upload XPMP2 Framework
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: XPMP2-lib
path: deploy-lib/* # this way we keep the folder structure in the artifact
Expand All @@ -74,7 +74,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Checkout Code
uses: actions/checkout@v3 # must checkout before we can use our own actions
uses: actions/checkout@v4 # must checkout before we can use our own actions
- name: Build
uses: ./.github/actions/build-win
id: build
Expand All @@ -87,7 +87,7 @@ jobs:
mkdir -p deploy-lib/lib/win
cp ${{ steps.build.outputs.lib-file-name }} deploy-lib/lib/win
- name: Upload XPMP2 lib
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: XPMP2-lib
path: deploy-lib/* # this way we keep the folder structure in the artifact
Expand Down

0 comments on commit 502f39b

Please sign in to comment.