From b3ef71a04a949ebe06729ab5411173332225276f Mon Sep 17 00:00:00 2001 From: Zach Probst Date: Fri, 7 Jun 2024 07:39:45 -0700 Subject: [PATCH] Bump to Node 20 Based Actions --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a0dae7c5d..18113b000 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,11 +14,11 @@ jobs: os: ["ubuntu-latest", "windows-latest", "macos-latest"] python-version: ["3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install poetry run: pipx install poetry - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'poetry' @@ -36,7 +36,7 @@ jobs: poetry run black nodestream tests --check poetry run isort nodestream tests --check-only - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} flags: ${{ matrix.python-version }}-${{ matrix.os }}