From 56c238f61bb97e3e9babcf18fc4470ca4a579e46 Mon Sep 17 00:00:00 2001 From: Peter Sobolewski <76622105+psobolewskiPhD@users.noreply.github.com> Date: Mon, 15 Apr 2024 22:15:46 -0400 Subject: [PATCH 1/2] Update test_and_deploy.yml actions --- .github/workflows/test_and_deploy.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index bb28306..02b5596 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python 3.8 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.8 - name: Install dependencies @@ -50,7 +50,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -71,14 +71,16 @@ jobs: # this runs the platform-specific tests declared in tox.ini - name: Test with tox - uses: aganders3/headless-gui@v1 + uses: aganders3/headless-gui@v2 with: run: tox env: PLATFORM: ${{ matrix.platform }} - name: Coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} deploy: # this will run when you have tagged a commit, starting with "v*" From 40972196822004019cab44e3575cf61316f976dc Mon Sep 17 00:00:00 2001 From: Peter Sobolewski <76622105+psobolewskiPhD@users.noreply.github.com> Date: Mon, 15 Apr 2024 22:16:54 -0400 Subject: [PATCH 2/2] Update deploy_docs.yml actions --- .github/workflows/deploy_docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index a217ab9..5ae5223 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -28,7 +28,7 @@ jobs: - name: Clone repo uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: "3.10"