From 8c437e6bf8e4c72cfc196d49a3742451a595d299 Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Tue, 20 Aug 2024 16:59:44 -0700 Subject: [PATCH] Use latest actions, add token for codecov --- .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 c639338..835937f 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: @@ -31,4 +31,6 @@ jobs: flake8 . python -m coverage combine python -m coverage xml - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}