update to 3.10 and try to fix lib problem with reharden all
diff --git a/.github/workflows/gds.yaml b/.github/workflows/gds.yaml index 7bc4207..695d200 100644 --- a/.github/workflows/gds.yaml +++ b/.github/workflows/gds.yaml
@@ -31,7 +31,7 @@ - name: setup python uses: actions/setup-python@v4 with: - python-version: '3.7.7' + python-version: '3.10' cache: 'pip' - run: pip install -r requirements.txt @@ -43,7 +43,7 @@ # fetch the repos - name: fetch all - run: python ./configure.py --clone-all --debug + run: ./configure.py --clone-all --debug # pwd debug - name: show projects @@ -51,7 +51,7 @@ # install projects - name: configure - run: python ./configure.py --update-caravel + run: ./configure.py --update-caravel - name: user project wrapper GDS run: make user_project_wrapper
diff --git a/.github/workflows/reharden_all.yaml b/.github/workflows/reharden_all.yaml index 8f70a6b..f58d503 100644 --- a/.github/workflows/reharden_all.yaml +++ b/.github/workflows/reharden_all.yaml
@@ -31,7 +31,7 @@ - name: setup python uses: actions/setup-python@v4 with: - python-version: '3.7.7' + python-version: '3.10' cache: 'pip' - run: pip install -r requirements.txt @@ -43,8 +43,8 @@ # fetch the repos - name: fetch all - run: python ./configure.py --clone-all --debug + run: ./configure.py --clone-all --debug # harden all - name: reharden - run: python ./configure.py --harden + run: ./configure.py --harden