Skip to content

Commit

Permalink
Change deprecated action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
afichet committed Jun 14, 2023
1 parent 8db5031 commit 44e4ffb
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- run: |
git submodule init
git submodule update
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'

- name: Install Qt
# You may pin to the exact commit or the version.
# uses: jurplel/install-qt-action@a10f4d43af43348aab618414b68a9d32cb008977
uses: jurplel/install-qt-action@v2.13.2

uses: jurplel/install-qt-action@v3

- name: Install Imath
# Now this is quite dirty...
run: |
Expand All @@ -38,7 +36,7 @@ jobs:
cd build
cmake ..
sudo make install
- name: Install OpenEXR
# Now this is quite dirty...
run: |
Expand All @@ -48,7 +46,7 @@ jobs:
cd build
cmake ..
sudo make install
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
Expand All @@ -58,4 +56,4 @@ jobs:
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}


0 comments on commit 44e4ffb

Please sign in to comment.