Skip to content

Commit

Permalink
yml fix to v4 (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan authored Mar 3, 2024
1 parent 04973d7 commit 058100b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/orbit_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
version: ${{ steps.set_version.outputs.full_version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Determine Version and Build Number
id: set_version
run: |
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout current repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update Package Lists
run: sudo apt-get update
- name: Install Dependencies
Expand All @@ -47,17 +47,17 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Dependencies
run: make install
- name: Build Binary
run: make build
- name: Archive production artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: embedded firmware
path: |
Expand All @@ -67,7 +67,7 @@ jobs:
build/VortexEngine.ino.hex
build/VortexEngine.ino.uf2
- name: Archive production artifacts for deployment
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: firmware-artifact
path: build/VortexEngine.ino.uf2
Expand All @@ -77,7 +77,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout current repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update Package Lists
run: sudo apt-get update
- name: Install Emscripten
Expand All @@ -100,7 +100,7 @@ jobs:
if: github.ref == 'refs/heads/orbit'
steps:
- name: Checkout current repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update Package Lists
run: sudo apt-get update
- name: Install Dependencies
Expand All @@ -122,8 +122,8 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/orbit'
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: firmware-artifact
path: build
Expand Down

0 comments on commit 058100b

Please sign in to comment.