Skip to content

Commit

Permalink
[ci] Update actions versions to Node 20 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
sciencewhiz authored Jun 22, 2024
1 parent 661e4d6 commit e12b01a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make update
- run: make build
- run: |
Expand All @@ -23,7 +23,7 @@ jobs:
name: Build Minimal
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make update
- run: make build/minimal-cross
- run: |
Expand All @@ -32,17 +32,17 @@ jobs:
if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }}
- run: make save/minimal-cross
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: roborio
path: roborio.tar.gz
retention-days: 1
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: raspbian
path: raspbian.tar.gz
retention-days: 1
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: aarch64
path: aarch64.tar.gz
Expand All @@ -68,10 +68,10 @@ jobs:
pyversion: py312

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download image
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.type }}
path: img
Expand Down

0 comments on commit e12b01a

Please sign in to comment.