Skip to content

Commit

Permalink
Fix CI deprecation notices
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisThrasher committed May 6, 2024
1 parent 11c94b8 commit 46a9f6a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/configure-pages@v2

- name: Upload Artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: build/docs/html

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
ninjaVersion: latest

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: cmake --preset dev ${{matrix.platform.flags}} -DBUILD_SHARED_LIBS=${{matrix.type.flags}} -DCMAKE_BUILD_TYPE=${{matrix.config.name}} -DCMAKE_VERBOSE_MAKEFILE=ON
Expand All @@ -57,7 +57,7 @@ jobs:

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

- name: Configure
run: cmake --preset coverage
Expand All @@ -75,7 +75,7 @@ jobs:
run: gcovr -x build/coverage.out -s -f 'src/.*' -f 'include/argon/.*' .

- name: Upload Coverage Report
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
directory: build
files: ./build/coverage.out
Expand All @@ -86,7 +86,7 @@ jobs:

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

- name: Configure
run: cmake --preset clang-tools
Expand All @@ -102,7 +102,7 @@ jobs:

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

- name: Configure
run: cmake --preset clang-tools
Expand All @@ -123,7 +123,7 @@ jobs:

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

- name: Configure
run: cmake --preset ${{matrix.sanitizer.preset}}
Expand All @@ -143,7 +143,7 @@ jobs:
run: sudo apt install doxygen graphviz

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure
run: cmake -B build -DBUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF
Expand Down

0 comments on commit 46a9f6a

Please sign in to comment.