diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index e0ce92ed..c41cbf75 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -20,7 +20,7 @@ jobs: tag_name: ${{ steps.bump-tag.outputs.new_tag }} steps: - name: Check out repository code - uses: actions/checkout@v6 + uses: actions/checkout@v4 with: token: ${{ secrets.TOKEN }} lfs: false @@ -48,7 +48,7 @@ jobs: # apt update && apt -y install curl nodejs xvfb - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v4 with: token: ${{ secrets.TOKEN }} lfs: false @@ -110,25 +110,12 @@ jobs: image: barichello/godot-ci:mono-4.6 steps: - - name: Install curl and zip + - name: Install tools run: | - apt update && apt -y install curl zip - - name: Install node 24 - shell: bash -l {0} - run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash - \. "$HOME/.nvm/nvm.sh" - nvm install 24 - node -v - - - name: Test node version - shell: bash -l {0} - run: | - node -v + apt update && apt -y install curl zip nodejs - name: Checkout - shell: bash -l {0} - uses: actions/checkout@v6 + uses: actions/checkout@v3 with: lfs: false persist-credentials: true