From bf827752a10c8187147931b181fc4fae95879e86 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Sat, 15 Feb 2025 14:30:31 +0900 Subject: [PATCH] ci: fix pip op --- .github/workflows/buildtest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/buildtest.yml b/.github/workflows/buildtest.yml index 34be881..4f5855b 100644 --- a/.github/workflows/buildtest.yml +++ b/.github/workflows/buildtest.yml @@ -55,7 +55,7 @@ jobs: source venv/bin/activate - name: Install pip run: | - pip3 install -U pip + python3 -m pip install -U pip - name: Get pip cache id: pip-cache run: | @@ -69,7 +69,7 @@ jobs: ${{ runner.os }}-pip- - name: Setup cached item run: | - pip3 install -r requirements.txt + python3 -m pip install -r requirements.txt - name: Setup Vim id: 'vim' uses: thinca/action-setup-vim@v2