Skip to content

Commit

Permalink
Bumped action versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
kondrak committed Aug 20, 2023
1 parent 744e3ae commit 84589fd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install required packages
shell: bash
Expand All @@ -30,7 +30,7 @@ jobs:
make clean debug
cd ..
- name: Upload vkQuake2 Debug artifacts
uses: actions/upload-artifact@v2.1.3
uses: actions/upload-artifact@v3
with:
name: vkQuake2-Ubuntu-debug-x64
path: |
Expand All @@ -43,7 +43,7 @@ jobs:
make clean release
cd ..
- name: Upload vkQuake2 Release artifacts
uses: actions/upload-artifact@v2.1.3
uses: actions/upload-artifact@v3
with:
name: vkQuake2-Ubuntu-release-x64
path: |
Expand All @@ -55,7 +55,7 @@ jobs:
run: |
linux/appimage/appimage.sh
- name: Upload vkQuake2 AppImage artifacts
uses: actions/upload-artifact@v2.1.3
uses: actions/upload-artifact@v3
with:
name: vkQuake2-AppImage
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: macos-11

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install Vulkan SDK
uses: humbletim/install-vulkan-sdk@v1.1.1
Expand All @@ -24,7 +24,7 @@ jobs:
make clean-xcode debug-xcode
cd ..
- name: Upload vkQuake2 Debug artifacts
uses: actions/upload-artifact@v2.1.3
uses: actions/upload-artifact@v3
with:
name: vkQuake2-MacOS-debug-x64
path: |
Expand All @@ -36,7 +36,7 @@ jobs:
make clean-xcode release-xcode
cd ..
- name: Upload vkQuake2 Release artifacts
uses: actions/upload-artifact@v2.1.3
uses: actions/upload-artifact@v3
with:
name: vkQuake2-MacOS-release-x64
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- uses: microsoft/setup-msbuild@v1.1
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install Vulkan SDK
uses: humbletim/install-vulkan-sdk@v1.1.1
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Build vkQuake2 Debug (x64)
run: msbuild quake2.sln /m /t:Rebuild /p:Configuration=Debug /p:Platform=x64
- name: Upload vkQuake2 Debug (x64) artifacts
uses: actions/upload-artifact@v2.1.3
uses: actions/upload-artifact@v3
with:
name: vkQuake2-Windows-debug-x64
path: |
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Build vkQuake2 Release (x64)
run: msbuild quake2.sln /m /t:Rebuild /p:Configuration=Release /p:Platform=x64
- name: Upload vkQuake2 Release (x64) artifacts
uses: actions/upload-artifact@v2.1.3
uses: actions/upload-artifact@v3
with:
name: vkQuake2-Windows-release-x64
path: |
Expand Down

0 comments on commit 84589fd

Please sign in to comment.