Skip to content

Commit

Permalink
CI: Fall back to older codecov version
Browse files Browse the repository at this point in the history
  • Loading branch information
stotko committed Nov 20, 2024
1 parent 4907180 commit 0a5a408
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
path: build

- name: Upload coverage report
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v5.0.3 # Bug in recent versions leading to "Missing Head Commit" error
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: build/stdgpu_coverage.info
Expand All @@ -90,6 +90,6 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: re-actors/alls-green@release/v1
with:
allowed-skips: publish
jobs: ${{ toJSON(needs) }}
- uses: re-actors/alls-green@release/v1
with:
allowed-skips: publish
jobs: ${{ toJSON(needs) }}
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
ubuntu:
strategy:
matrix:
os: ['ubuntu-22.04', 'ubuntu-24.04']
os: ["ubuntu-22.04", "ubuntu-24.04"]
build_type: [Debug, Release]
shared_libs: [ON, OFF]
use_32bit_index: [ON, OFF]
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
windows:
strategy:
matrix:
os: ['windows-2019', 'windows-2022']
os: ["windows-2019", "windows-2022"]
build_type: [Debug, Release]
shared_libs: [ON, OFF]
use_32bit_index: [ON, OFF]
Expand Down Expand Up @@ -148,6 +148,6 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}

0 comments on commit 0a5a408

Please sign in to comment.