From 49bd88704c1af01cfab953a9980854941961e979 Mon Sep 17 00:00:00 2001 From: Kevin Dinkel <1225857+dinkelk@users.noreply.github.com> Date: Tue, 23 Apr 2024 15:52:10 -0600 Subject: [PATCH] updating github actions versions --- .github/workflows/build_linux.yml | 6 +++--- .github/workflows/build_pico.yml | 6 +++--- .github/workflows/publish_all.yml | 4 ++-- .github/workflows/style_all.yml | 6 +++--- .github/workflows/test_all.yml | 6 +++--- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index 1b94c18..626209b 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -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 @@ -30,7 +30,7 @@ jobs: - 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 diff --git a/.github/workflows/build_pico.yml b/.github/workflows/build_pico.yml index 5c990ce..43460eb 100644 --- a/.github/workflows/build_pico.yml +++ b/.github/workflows/build_pico.yml @@ -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 @@ -30,7 +30,7 @@ jobs: - 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: | diff --git a/.github/workflows/publish_all.yml b/.github/workflows/publish_all.yml index 210638b..6b4d1b7 100644 --- a/.github/workflows/publish_all.yml +++ b/.github/workflows/publish_all.yml @@ -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 diff --git a/.github/workflows/style_all.yml b/.github/workflows/style_all.yml index 85431a3..c0868a6 100644 --- a/.github/workflows/style_all.yml +++ b/.github/workflows/style_all.yml @@ -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 @@ -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 diff --git a/.github/workflows/test_all.yml b/.github/workflows/test_all.yml index c46f0e6..45c8a82 100644 --- a/.github/workflows/test_all.yml +++ b/.github/workflows/test_all.yml @@ -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 @@ -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