From a03419aa7140bede4dc2edfd4c97a3087bdc3fd2 Mon Sep 17 00:00:00 2001 From: hyeonggil <> Date: Sun, 15 Mar 2026 15:37:45 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20ci-fix:=20actions/setup-python?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20PEP=20668=20pip=20=EC=84=A4=EC=B9=98=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/lotto-buy.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lotto-buy.yml b/.github/workflows/lotto-buy.yml index 169ac88..90e96ac 100644 --- a/.github/workflows/lotto-buy.yml +++ b/.github/workflows/lotto-buy.yml @@ -12,11 +12,14 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Python 및 의존성 설치 - run: | - apt-get update -qq - apt-get install -y python3 python3-pip python3-venv - pip3 install -r requirements.txt + - name: Python 설정 + uses: actions/setup-python@v5 + with: + python-version: '3.11' + cache: 'pip' + + - name: 의존성 설치 + run: pip install -r requirements.txt - name: Chrome 설치 uses: browser-actions/setup-chrome@v1