Skip to content

Commit

Permalink
ci: codecov: Use Ubuntu 20.04 runner image
Browse files Browse the repository at this point in the history
This commit updates the Codecov workflow to use a specific runner image
version, ubuntu-20.04, instead of the latest version in order to
prevent any potential breakages due to the 'latest' version change by
GitHub.

Signed-off-by: Stephanos Ioannidis <[email protected]>
  • Loading branch information
stephanosio committed Aug 22, 2022
1 parent 9dc8922 commit 834175d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
codecov-prep:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: github.repository == 'zephyrproject-rtos/zephyr'
steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
codecov-results:
name: "Publish Coverage Results"
needs: codecov
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
# the codecov job might be skipped, we don't need to run this job then
if: success() || failure()

Expand Down

0 comments on commit 834175d

Please sign in to comment.