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"]
|
||||
steps:
|
||||
- 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
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Install Poetry
|
||||
|
@ -25,7 +29,7 @@ jobs:
|
|||
|
||||
build-documentation:
|
||||
needs: setup
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Build the documentation
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue