Skip to content

Commit

Permalink
CI: use actions/checkout@v4
Browse files Browse the repository at this point in the history
v3 issues some warning of deprecated stuff.
  • Loading branch information
robUx4 committed Feb 5, 2024
1 parent 70055d0 commit f7cc112
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-gcc13.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: lukka/get-cmake@latest

- name: Get pushed code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure ${{ matrix.shared.name }} library
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DBUILD_SHARED_LIBS=${{ matrix.shared.option }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: lukka/get-cmake@latest

- name: Get pushed code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: lukka/get-cmake@latest

- name: Get pushed code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built -DCMAKE_OSX_ARCHITECTURES="${{ matrix.arch }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/uwp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: lukka/get-cmake@latest

- name: Get pushed code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -A ${{ matrix.arch.option }} -DBUILD_SHARED_LIBS=OFF
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: lukka/get-cmake@latest

- name: Get pushed code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure library
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -A ${{ matrix.arch.option }}
Expand Down

0 comments on commit f7cc112

Please sign in to comment.