Skip to content

Bump actions/checkout from 3.6.0 to 4.1.4 #570

Bump actions/checkout from 3.6.0 to 4.1.4

Bump actions/checkout from 3.6.0 to 4.1.4 #570

Workflow file for this run

name: Mac OS X build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: macos-12
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
submodules: recursive
- name: cmake
run: |
rm -rf ${{ github.workspace }}/build
cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}
- name: make
run: |
cd ${{ github.workspace }}/build
sudo make install