Skip to content

Commit 4f02f7a

Browse files
authored
Merge pull request #25 from Return-To-The-Roots/Flamefire-patch-1
GHA: Update runners
2 parents 31c1312 + 012aa14 commit 4f02f7a

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
include:
28-
- { compiler: gcc-10, os: ubuntu-18.04 }
28+
- { compiler: gcc-10, os: ubuntu-22.04 }
2929
- { compiler: msvc, os: windows-2019 }
3030

3131
runs-on: ${{matrix.os}}
@@ -49,14 +49,14 @@ jobs:
4949
run: echo "::set-output name=upload_url::https://uploads.github.com/repos/$GITHUB_REPOSITORY/releases/$(jq --raw-output '.release.id' $GITHUB_EVENT_PATH)/assets{?name,label}"
5050
id: release
5151

52-
- uses: actions/checkout@v2
53-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v4
5454
name: Checkout libutil
5555
with:
5656
repository: Return-To-The-Roots/libutil
5757
ref: master
5858
path: external/libutil
59-
- uses: actions/checkout@v2
59+
- uses: actions/checkout@v4
6060
name: Checkout libendian
6161
with:
6262
repository: Return-To-The-Roots/libendian

.github/workflows/unit-tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
StyleAndFormatting:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727
- run: git submodule update --init
2828
- name: Validation
2929
run: tools/ci/staticValidation.sh "$GITHUB_WORKSPACE"
@@ -44,13 +44,13 @@ jobs:
4444
strategy:
4545
matrix:
4646
include:
47-
- { compiler: gcc-6, os: ubuntu-18.04, buildType: Release }
48-
- { compiler: gcc-6, os: ubuntu-18.04, buildType: Debug, coverage: true }
49-
- { compiler: clang, os: macos-10.15, buildType: Debug, boostVersion: 1.74.0 } # Multiple bugs with recent OSX until 1.74
47+
- { compiler: gcc-7, os: ubuntu-20.04, buildType: Release }
48+
- { compiler: gcc-7, os: ubuntu-20.04, buildType: Debug, coverage: true }
49+
- { compiler: clang, os: macos-13, buildType: Debug, boostVersion: 1.74.0 } # Multiple bugs with recent OSX until 1.74
5050
# Latest GCC
51-
- { compiler: gcc-10, os: ubuntu-18.04, buildType: Debug }
51+
- { compiler: gcc-13, os: ubuntu-22.04, buildType: Debug, boostVersion: 1.73.0 }
5252
# Latest Clang
53-
- { compiler: clang-10, os: ubuntu-18.04, buildType: Debug }
53+
- { compiler: clang-12, os: ubuntu-22.04, buildType: Debug, boostVersion: 1.73.0 }
5454
# Windows
5555
- { compiler: msvc, os: windows-2019, buildType: Debug }
5656

@@ -64,14 +64,14 @@ jobs:
6464
- run: echo "BOOST_VERSION=${{matrix.boostVersion}}" >> $GITHUB_ENV
6565
if: matrix.boostVersion
6666

67-
- uses: actions/checkout@v2
68-
- uses: actions/checkout@v2
67+
- uses: actions/checkout@v4
68+
- uses: actions/checkout@v4
6969
name: Checkout libutil
7070
with:
7171
repository: Return-To-The-Roots/libutil
7272
ref: master
7373
path: external/libutil
74-
- uses: actions/checkout@v2
74+
- uses: actions/checkout@v4
7575
name: Checkout libendian
7676
with:
7777
repository: Return-To-The-Roots/libendian

0 commit comments

Comments
 (0)