From 97342ee5bae514689a514a1c82c46351ae3e016b Mon Sep 17 00:00:00 2001 From: dd86k Date: Wed, 8 May 2024 14:58:32 -0400 Subject: [PATCH] CI: Attempt upgrade checkout action --- .github/workflows/alicedbg.yaml | 4 ++-- .github/workflows/alicedump.yaml | 4 ++-- .github/workflows/simple.yaml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/alicedbg.yaml b/.github/workflows/alicedbg.yaml index 5698c330..4f8593c1 100644 --- a/.github/workflows/alicedbg.yaml +++ b/.github/workflows/alicedbg.yaml @@ -5,14 +5,14 @@ on: [ push, pull_request ] # Tests ensures the project builds and executes unittest. # The entry points are rather minimal. jobs: - Alicedbg: + Test: strategy: matrix: os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022 ] dc: [ dmd-latest, ldc-latest ] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup D compiler uses: dlang-community/setup-dlang@v1 with: diff --git a/.github/workflows/alicedump.yaml b/.github/workflows/alicedump.yaml index 2f3308f2..95b74506 100644 --- a/.github/workflows/alicedump.yaml +++ b/.github/workflows/alicedump.yaml @@ -5,14 +5,14 @@ on: [ push, pull_request ] # Tests ensures the project builds and executes unittest. # The entry points are rather minimal. jobs: - Alicedump: + Test: strategy: matrix: os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022 ] dc: [ dmd-latest, ldc-latest ] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup D compiler uses: dlang-community/setup-dlang@v1 with: diff --git a/.github/workflows/simple.yaml b/.github/workflows/simple.yaml index de5c0415..6d465f89 100644 --- a/.github/workflows/simple.yaml +++ b/.github/workflows/simple.yaml @@ -5,13 +5,13 @@ on: [ push, pull_request ] # Tests ensures the project builds and executes unittest. # The entry points are rather minimal. jobs: - Simple: + Build: strategy: matrix: os: [ ubuntu-latest, windows-latest ] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: dlang-community/setup-dlang@v1 - - name: Test + - name: Build run: dub build -c simple