From b742eb360d5761dfd42c1f87238a24616b2544bf Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Mon, 26 Aug 2024 21:47:41 -0700 Subject: [PATCH] Use latest actions and codecov token --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fcd497f..fb1ba84 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -30,4 +30,6 @@ jobs: scons coverage=true python=$(which python) test flake8 . python -m coverage combine && python -m coverage xml && python -m coverage erase - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}