fix(workflows): fixed some issues with the action.yaml
This commit is contained in:
parent
a97a1093f1
commit
2551dd6ce0
1 changed files with 7 additions and 3 deletions
|
@ -9,9 +9,13 @@ jobs:
|
||||||
python-version: ["3.11"]
|
python-version: ["3.11"]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
- name: Set up Node
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "12"
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install Poetry
|
- name: Install Poetry
|
||||||
|
@ -25,7 +29,7 @@ jobs:
|
||||||
|
|
||||||
build-documentation:
|
build-documentation:
|
||||||
needs: setup
|
needs: setup
|
||||||
runs-on: ubuntu-latest
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- name: Build the documentation
|
- name: Build the documentation
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue