diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a0752be..598e4ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,11 @@ on: # Allows running manually workflow_dispatch: +# https://github.com/actions/checkout/issues/1487 +# https://github.com/actions/checkout/issues/1809 +env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + jobs: build: runs-on: ubuntu-22.04 @@ -26,12 +31,12 @@ jobs: rgbgfx --version - name: Checkout main repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: path: 'code' - name: Checkout baserom repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: repository: ${{ secrets.BASEROM_REPOSITORY }} ssh-key: ${{ secrets.BASEROM_KEY }}