From 039ff284c7b4b2af0cc0b4bca46caf8a36428af9 Mon Sep 17 00:00:00 2001 From: sabonerune <102559104+sabonerune@users.noreply.github.com> Date: Wed, 22 May 2024 20:19:53 +0900 Subject: [PATCH 1/2] MAINT: Bump up `actions/checkout` ` actions/setup-python` --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f383277..42d37c1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,11 +30,11 @@ jobs: python-version: 3.9 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: true - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies From ba2fcd14d5b51025889d4b22998967e5fa304da4 Mon Sep 17 00:00:00 2001 From: sabonerune <102559104+sabonerune@users.noreply.github.com> Date: Wed, 22 May 2024 22:30:46 +0900 Subject: [PATCH 2/2] FIX: skip Lint with pysen if 3.7 --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 42d37c1..ba1815c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -42,6 +42,7 @@ jobs: python -m pip install --upgrade pip pip install -e ".[dev]" - name: Lint with pysen + if: ${{ matrix.python-version != '3.7' }} run: | pysen run lint - name: Test with pytest