From a37a10e91e304e592c7ed6161d1606da06866036 Mon Sep 17 00:00:00 2001 From: Stuart George Date: Mon, 1 Jul 2024 12:57:51 +0100 Subject: [PATCH] update git action --- .github/workflows/test.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9d088ba..4f9dde0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,12 +16,12 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache with: path: ${{ env.pythonLocation }} @@ -32,6 +32,4 @@ jobs: - name: Lint run: bash scripts/check - name: Test - run: bash scripts/test - - name: Upload coverage - uses: codecov/codecov-action@v3 \ No newline at end of file + run: bash scripts/test \ No newline at end of file