Skip to content

Commit

Permalink
Merge pull request #32 from fwcd/bump-ci
Browse files Browse the repository at this point in the history
Bump versions of actions and runners in CI
  • Loading branch information
daschuer authored Jul 9, 2024
2 parents 01883ff + 6ffc3a2 commit 941e517
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
strategy:
matrix:
include:
- name: Ubuntu 20.04
os: ubuntu-20.04
- name: Ubuntu 22.04
os: ubuntu-22.04
install_dir: ~/libKeyFinder
cmake_extras: -DCMAKE_BUILD_TYPE=RelWithDebInfo
- name: macOS 11
os: macos-11
- name: macOS 12
os: macos-12
install_dir: ~/libKeyFinder
cmake_extras: -DCMAKE_BUILD_TYPE=RelWithDebInfo
- name: Windows 2019
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Check out Git repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: "[Ubuntu] Install dependencies"
if: startsWith(matrix.os, 'ubuntu')
run: |
Expand All @@ -41,7 +41,7 @@ jobs:
if: startsWith(matrix.os, 'macos')
run: brew install fftw catch2
- name: "[Windows] Set up vcpkg cache"
uses: actions/cache@v2
uses: actions/cache@v4
if: runner.os == 'Windows'
with:
path: C:\Users\runneradmin\AppData\Local\vcpkg\archives
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
env:
CMAKE_PREFIX_PATH: ${{ matrix.install_dir }}
- name: Upload Build Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }} libKeyFinder build
path: ${{ matrix.install_dir }}

0 comments on commit 941e517

Please sign in to comment.