Skip to content

Commit

Permalink
update actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Twinklebear committed Jan 29, 2024
1 parent 2723139 commit 5e2e8ac
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Create Build Environment
run: |
Expand All @@ -49,7 +49,7 @@ jobs:
# Provides VulkanSDK for Windows and OptiX for Windows/Linux
- name: Fetch RT CI Dependencies
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ssh-key: ${{secrets.RT_CI_DEPS_KEY}}
repository: Twinklebear/rt-ci-deps
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
tar -czvf ${PACKAGE_NAME}.tar.gz ${PACKAGE_NAME}
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{env.PACKAGE_NAME}}
path: ${{github.workspace}}/install/${{env.PACKAGE_NAME}}.tar.gz
Expand All @@ -109,7 +109,7 @@ jobs:
runs-on: windows-2022

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

- name: Create Build Environment
run: |
Expand All @@ -123,7 +123,7 @@ jobs:

# Provides VulkanSDK for Windows and OptiX for Windows/Linux
- name: Fetch RT CI Dependencies
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ssh-key: ${{secrets.RT_CI_DEPS_KEY}}
repository: Twinklebear/rt-ci-deps
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
7z a -tzip ${env:PACKAGE_NAME}.zip ${env:PACKAGE_NAME}
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{env.PACKAGE_NAME}}
path: ${{github.workspace}}/install/${{env.PACKAGE_NAME}}.zip
Expand All @@ -203,7 +203,7 @@ jobs:
runs-on: macos-13

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

- name: Create Build Environment
run: |
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
tar -czvf ${PACKAGE_NAME}.tar.gz ${PACKAGE_NAME}
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{env.PACKAGE_NAME}}
path: ${{github.workspace}}/install/${{env.PACKAGE_NAME}}.tar.gz

0 comments on commit 5e2e8ac

Please sign in to comment.