Skip to content

Commit

Permalink
Update checkout action.
Browse files Browse the repository at this point in the history
Removes node.js 16 error.
  • Loading branch information
thejpster committed Jun 14, 2024
1 parent 732abe0 commit a5c008b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/kibot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
container:
image: ghcr.io/inti-cmnb/kicad8_auto:1.6.5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Run KiBot for DRC
Expand All @@ -40,7 +40,7 @@ jobs:
container:
image: ghcr.io/inti-cmnb/kicad8_auto:1.6.5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Run KiBot for ERC
Expand All @@ -52,7 +52,7 @@ jobs:
container:
image: ghcr.io/inti-cmnb/kicad8_auto:1.6.5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Get Branch Name
Expand All @@ -64,7 +64,7 @@ jobs:
run: |
kibot -c Kicad/docs.kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v
- name: Upload KiBot Output
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{success()}}
with:
name: Build-Outputs
Expand Down

0 comments on commit a5c008b

Please sign in to comment.