Skip to content

Commit

Permalink
Updated the versions of all actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Jun 25, 2024
1 parent c444f2b commit 4addcf9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Get latest CMake
uses: lukka/get-cmake@latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get current version
id: current
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygenate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Add Pretty CSS
uses: wei/wget@v1
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,22 @@ jobs:
}
- {
name: "macOS Latest Clang",
os: macos-latest
os: macos-latest,
cov: false
}

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

- name: Get latest CMake
uses: lukka/get-cmake@latest

- name: Configure the build for Mac
if: ${{ matrix.config.os == 'macos-latest' }}
if: ${{ ! matrix.config.cov }}
run: cmake -S . -B build

- name: Configure the build with coverage
if: ${{ matrix.config.os == 'ubuntu-latest' && matrix.config.cov }}
if: ${{ matrix.config.cov }}
run: cmake -S . -B build -DCODE_COVERAGE=ON

- name: Run the build
Expand All @@ -62,6 +63,8 @@ jobs:
- name: Upload to Codecov
if: ${{ matrix.config.cov }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
directory: build/tests/CMakeFiles/
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 4addcf9

Please sign in to comment.