Refactor to use plugeth-statediff #1

Merged
roysc merged 14 commits from refactor-for-plugin into v5 2023-09-21 08:01:51 +00:00
Showing only changes of commit 77e264eef5 - Show all commits

View File

@ -60,10 +60,14 @@ jobs:
run: |
git config --global url."https://$TOKEN:@git.vdb.to/".insteadOf https://git.vdb.to/
- name: Install jq, python
- name: Install jq
roysc marked this conversation as resolved Outdated

I think you are missing an action here:

      - name: "Install Python"
        uses: actions/setup-python@v4
        with:
          python-version: '3.8'
I think you are missing an action here: ``` - name: "Install Python" uses: actions/setup-python@v4 with: python-version: '3.8' ```
env:
DEBIAN_FRONTEND: noninteractive
run: apt-get update && apt-get install -y jq python3-pip
run: apt-get update && apt-get install -y jq
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install stack-orchestrator
uses: actions/checkout@v3
with: