From 7cf9adf546fe23e05d41e99d27fd09abc0f3411c Mon Sep 17 00:00:00 2001 From: Alexandre Decan Date: Sat, 14 Sep 2024 11:10:05 +0200 Subject: [PATCH] Upgrade some Actions --- .github/workflows/deploy.yaml | 4 ++-- .github/workflows/test.yaml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index e32bcd9..178aa00 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -8,9 +8,9 @@ jobs: deploy: runs-on: ubuntu-latest 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: 3.12 - name: Install dependencies diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4f28396..a6c71d7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,9 +14,9 @@ jobs: matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] 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 }} - name: Install dependencies @@ -30,7 +30,7 @@ jobs: - name: Execute tests run: coverage run --source portion -m pytest - name: Upload coverage to Coveralls + uses: coverallsapp/github-action@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: coverallsapp/github-action@v2.3.0 - +