From d3d99af680321bec4816883f8f5cc3563d403919 Mon Sep 17 00:00:00 2001 From: "levoncrypto1994@gmail.com" Date: Sat, 30 Dec 2023 01:38:22 +0400 Subject: [PATCH] github actions fix --- .github/workflows/cd.yml | 3 ++- .github/workflows/ci-master.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index ae66d6a6..31fa2679 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -19,11 +19,12 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: '3.12' + python-version: '3.9.0' - name: Install Application Dependencies run: | python --version python -m pip install setuptools==65.3.0 + python -m pip install pip==20.2.3 python -m pip install -r requirements.txt - name: Bundle Application run: python -m PyInstaller --distpath=bin --workpath=work dash_masternode_tool.spec diff --git a/.github/workflows/ci-master.yml b/.github/workflows/ci-master.yml index f4024b20..3f7f84c4 100644 --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -22,11 +22,12 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: '3.12' + python-version: '3.9.0' - name: Install Application Dependencies run: | python --version python -m pip install setuptools==65.3.0 + python -m pip install pip==20.2.3 python -m pip install -r requirements.txt - name: Bundle Application run: python -m PyInstaller --distpath=bin --workpath=work dash_masternode_tool.spec