From 2551dd6ce0eee6f7509d5dcb237ce1498d874612 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 6 Jan 2024 16:22:39 +0000 Subject: [PATCH] fix(workflows): fixed some issues with the action.yaml --- .forgejo/workflows/action.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/action.yaml b/.forgejo/workflows/action.yaml index dbfd924..a5a3a6a 100644 --- a/.forgejo/workflows/action.yaml +++ b/.forgejo/workflows/action.yaml @@ -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: |