From bcf3bfa5f5abd21e65eb8d78939c690da1f43c37 Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 26 Aug 2024 00:00:14 +0200 Subject: [PATCH] Workflows: upgrade checkout actions, rename Linux workflow --- .github/workflows/build_linux.yml | 6 +++--- .github/workflows/tests.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index cd0c23a..496a2bf 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -1,4 +1,4 @@ -name: Build and test +name: Build - Linux x64 on: workflow_run: @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Update package repos run: sudo apt-get -y update - name: Install prerequisites @@ -27,5 +27,5 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: 'snow-linux-gha${{ github.run_number }}' + name: 'snow-linux-x64-gha${{ github.run_number }}' path: target/release/snow_frontend_tui diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 84b41df..31ff383 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Update package repos run: sudo apt-get -y update - name: Install prerequisites