Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
Updates deprecated github actions to newer version that use Node.js 20.
  • Loading branch information
albertziegenhagel committed Apr 11, 2024
1 parent 1921656 commit 6deebf1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
echo "CC=clang-17" >> $GITHUB_ENV
echo "CXX=clang++-17" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: 'true'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Check clang-format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run clang-format
uses: DoozyX/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
echo "CC=clang-17" >> $GITHUB_ENV
echo "CXX=clang++-17" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: 'true'

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
run: cmake --build ${{ github.workspace }}/build/coverage --target code_coverage_export_lcov

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{ github.workspace }}/build/coverage/coverage.info
6 changes: 3 additions & 3 deletions .github/workflows/deploy-head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
is_newer: ${{ steps.step1.outputs.result }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -42,7 +42,7 @@ jobs:
if: needs.check.outputs.is_newer == 1

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

- name: Update head tag
run: |
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
- assets

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

- name: Mark release as non-draft
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run-on: [windows-latest]

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

- name: Install ninja
if: runner.os == 'Linux'
Expand Down

0 comments on commit 6deebf1

Please sign in to comment.