mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-17 00:11:44 +00:00
feat: use wrapper
fix: submodules fix: >> fix: container with python fix: oidc fix: latex fix: latex in the container fix: no sudo fix: container to python fix: submodule stuff fix: just dont coverage fix: apt install git fix: no sudo fix: apt-get fix: use the oidc token fix: cut the token fix: small changes fix: set the token fix: add defaults fix: bump to latest wrapper fix: 0.0.20 fix: 0.8.0
This commit is contained in:
parent
b12960727c
commit
9c484f2451
2 changed files with 7 additions and 0 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -99,6 +99,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4.2.2
|
uses: actions/checkout@v4.2.2
|
||||||
|
with:
|
||||||
|
submodules: 'true'
|
||||||
- name: Install deps
|
- name: Install deps
|
||||||
run: |
|
run: |
|
||||||
apt-get install git
|
apt-get install git
|
||||||
|
|
|
||||||
5
dist/codecov.sh
vendored
5
dist/codecov.sh
vendored
|
|
@ -102,6 +102,11 @@ CC_PUBLIC_PGP_KEY=$(curl https://keybase.io/codecovsecurity/pgp_keys.asc)
|
||||||
then
|
then
|
||||||
exit_if_error "Could not verify SHASUM. Please contact security@codecov.io if problem continues"
|
exit_if_error "Could not verify SHASUM. Please contact security@codecov.io if problem continues"
|
||||||
fi
|
fi
|
||||||
|
if ! (shasum -a 256 -c "${cc_filename}.SHA256SUM" || \
|
||||||
|
sha256sum -c "${cc_filename}.SHA256SUM");
|
||||||
|
then
|
||||||
|
exit_if_error "Could not verify SHASUM. Please contact Codecov if problem continues"
|
||||||
|
fi
|
||||||
say "$g==>$x CLI integrity verified"
|
say "$g==>$x CLI integrity verified"
|
||||||
say
|
say
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue