From ec8f51726f56744500e6cd7971c5e9dd0aaef52c Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Wed, 16 Mar 2022 16:21:05 +0000 Subject: [PATCH] Unpin pyright-action (#7499) The issues that broke typeshed's CI have been fixed by https://github.com/jakebailey/pyright-action/commit/e7c2cbabca407c6ba1eecc5c2317422f8a609c2a --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c38117aff..cc8c6085d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -75,14 +75,14 @@ jobs: PYRIGHT_VERSION: 1.1.230 # Must match pyright_test.py. steps: - uses: actions/checkout@v2 - - uses: jakebailey/pyright-action@v1.0.4 + - uses: jakebailey/pyright-action@v1 with: version: ${{ env.PYRIGHT_VERSION }} python-platform: ${{ matrix.python-platform }} python-version: ${{ matrix.python-version }} no-comments: ${{ matrix.python-version != '3.9' || matrix.python-platform != 'Linux' }} # Having each job create the same comment is too noisy. project: ./pyrightconfig.stricter.json - - uses: jakebailey/pyright-action@v1.0.4 + - uses: jakebailey/pyright-action@v1 with: version: ${{ env.PYRIGHT_VERSION }} python-platform: ${{ matrix.python-platform }}