Skip to content

Commit

Permalink
Github actions: Use latest versions
Browse files Browse the repository at this point in the history
Node.js 16 actions are deprecated. Please update the following
actions to use Node.js 20: actions/checkout@v3.
  • Loading branch information
pierre-dejoue committed Jan 24, 2024
1 parent e646d65 commit 6adf424
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
CMAKE_CONFIG_EXTRA: ${{ matrix.os == 'macos' && format('-DCMAKE_OSX_ARCHITECTURES={0}', matrix.arch) || '' }}

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

- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ${{ env.CMAKE_CONFIG_PROJECT }} ${{ env.CMAKE_CONFIG_EXTRA }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
CMAKE_CONFIG_EXTRA: ${{ matrix.os == 'macos' && format('-DCMAKE_OSX_ARCHITECTURES={0}', matrix.arch) || '' }}

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

- if: matrix.os == 'ubuntu'
name: Install Dependencies
Expand All @@ -50,7 +50,7 @@ jobs:
run: cmake --install . --config ${{ matrix.build_type }} --prefix install

- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: package-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/build/install
Expand Down

0 comments on commit 6adf424

Please sign in to comment.