Skip to content

Commit

Permalink
Work around actions/checkout#1487
Browse files Browse the repository at this point in the history
  • Loading branch information
VariantXYZ committed Jul 14, 2024
1 parent a6e3ad0 commit 0c99cd0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down

0 comments on commit 0c99cd0

Please sign in to comment.