Skip to content

Commit

Permalink
updating github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dinkelk committed Apr 23, 2024
1 parent f21284d commit 49bd887
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ jobs:
- run: echo "Starting job triggered by a ${{ github.event_name }} event on a ${{ runner.os }} server hosted by GitHub."
- run: echo "Checking out ${{ github.repository }} on branch ${{ github.ref }}."
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
path: adamant_example
- name: Clone adamant repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
repository: lasp/adamant
path: adamant
- name: Build the Linux binary
run: bash adamant_example/env/github_run.sh "redo adamant_example/src/assembly/linux/main/build/bin/Linux/main.elf"
- name: Archive Linux binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux_elf
path: adamant_example/src/assembly/linux/main/build/bin/Linux/main.elf
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_pico.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ jobs:
- run: echo "Starting job triggered by a ${{ github.event_name }} event on a ${{ runner.os }} server hosted by GitHub."
- run: echo "Checking out ${{ github.repository }} on branch ${{ github.ref }}."
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
path: adamant_example
- name: Clone adamant repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
repository: lasp/adamant
path: adamant
- name: Build the Pico binary
run: bash adamant_example/env/github_run.sh "redo adamant_example/src/assembly/pico/main/build/bin/Pico/main.uf2"
- name: Archive Pico binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pico_elf
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
- run: echo "Starting job triggered by a ${{ github.event_name }} event on a ${{ runner.os }} server hosted by GitHub."
- run: echo "Checking out ${{ github.repository }} on branch ${{ github.ref }}."
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
path: adamant_example
- name: Clone adamant repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
repository: lasp/adamant
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/style_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
- run: echo "Starting job triggered by a ${{ github.event_name }} event on a ${{ runner.os }} server hosted by GitHub."
- run: echo "Checking out ${{ github.repository }} on branch ${{ github.ref }}."
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
path: adamant_example
- name: Clone adamant repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
repository: lasp/adamant
Expand All @@ -31,7 +31,7 @@ jobs:
run: bash adamant_example/env/github_run.sh "redo adamant_example/style_all"
- name: Archive logs for failed style checks
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: failed_style_logs
path: adamant_example/build/failed_style_logs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
- run: echo "Starting job triggered by a ${{ github.event_name }} event on a ${{ runner.os }} server hosted by GitHub."
- run: echo "Checking out ${{ github.repository }} on branch ${{ github.ref }}."
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
path: adamant_example
- name: Clone adamant repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
set-safe-directory: true
repository: lasp/adamant
Expand All @@ -31,7 +31,7 @@ jobs:
run: bash adamant_example/env/github_run.sh "redo adamant_example/test_all"
- name: Archive logs for failed unit tests
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: failed_test_logs
path: adamant_example/build/failed_test_logs
Expand Down

0 comments on commit 49bd887

Please sign in to comment.