From 52af6120af5ae2331fb56e470d2f2335ec9e84a3 Mon Sep 17 00:00:00 2001 From: hyeonggil <> Date: Sun, 15 Mar 2026 14:23:44 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20setup-python=20=EC=A0=9C=EA=B1=B0,=20?= =?UTF-8?q?=EC=8B=9C=EC=8A=A4=ED=85=9C=20python3=20=EC=82=AC=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/lotto-buy.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/lotto-buy.yml b/.github/workflows/lotto-buy.yml index a4c81a9..b802064 100644 --- a/.github/workflows/lotto-buy.yml +++ b/.github/workflows/lotto-buy.yml @@ -12,13 +12,8 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Python 설정 - uses: actions/setup-python@v5 - with: - python-version: '3.12' - - name: 의존성 설치 - run: pip install -r requirements.txt + run: pip3 install -r requirements.txt - name: Chrome 설치 uses: browser-actions/setup-chrome@v1 @@ -27,4 +22,4 @@ jobs: env: LOTTO_USER_ID: ${{ secrets.LOTTO_USER_ID }} LOTTO_USER_PW: ${{ secrets.LOTTO_USER_PW }} - run: python lotto_auto_buy.py + run: python3 lotto_auto_buy.py