From a9883592846933f37c9f764eeaf33ac0303820c3 Mon Sep 17 00:00:00 2001 From: Celia Oakley Date: Sun, 5 Jan 2025 17:28:38 -0800 Subject: [PATCH] Update github package workflow --- .github/workflows/python-package.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 8efc257..9a60a87 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,9 +16,9 @@ jobs: python-version: ["3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -44,7 +44,8 @@ jobs: run: | pytest --cov=tmdbsimple --cov-report term-missing --cov-report=xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v4 with: - file: ./coverage.xml + files: ./coverage.xml name: codecov-tmdbsimple + # token: ${{ secrets.CODECOV_TOKEN }} # commented out to see if works without token