Skip to content

Commit

Permalink
CI: Attempt upgrade checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
dd86k committed May 8, 2024
1 parent 6c4eefc commit 97342ee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/alicedbg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/alicedump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/simple.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 97342ee

Please sign in to comment.