From 8023a857e118439d1ca35a5ffeb03946a1065623 Mon Sep 17 00:00:00 2001 From: Takatoshi Kondo Date: Sat, 17 May 2025 10:25:54 +0900 Subject: [PATCH] Updated CI ubuntu version. --- .github/workflows/coverage.yml | 6 +++--- .github/workflows/gha.yml | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 3bfb4820..30e5cea7 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install build dependencies run: | sudo apt-get update @@ -24,7 +24,7 @@ jobs: - name: Cache boost id: cache-boost - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/boost-prefix/ key: ${{ runner.os }}-boost-1-85-0-2024-05-27 @@ -35,7 +35,7 @@ jobs: - name: Cache zlib id: cache-zlib - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/zlib-prefix/ key: ${{ runner.os }}-zlib-64-1-2-11-2021-08-09 diff --git a/.github/workflows/gha.yml b/.github/workflows/gha.yml index 0f9de441..52487dca 100644 --- a/.github/workflows/gha.yml +++ b/.github/workflows/gha.yml @@ -84,7 +84,7 @@ jobs: linux: name: ${{ format('Linux (pattern {0})', matrix.pattern) }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 strategy: fail-fast: false matrix: @@ -136,7 +136,7 @@ jobs: case ${{ matrix.pattern }} in 0) - export CXX="clang++-10" + export CXX="clang++" export MSGPACK_CXX_VERSION="MSGPACK_CXX11=ON" ;; 1) @@ -144,7 +144,7 @@ jobs: export MSGPACK_CXX_VERSION="MSGPACK_CXX11=ON" ;; 2) - export CXX="clang++-10" + export CXX="clang++" export MSGPACK_CXX_VERSION="MSGPACK_CXX14=ON" ;; 3) @@ -153,7 +153,7 @@ jobs: export MSGPACK_USE_STD_VARIANT_ADAPTOR="MSGPACK_USE_STD_VARIANT_ADAPTOR=ON" ;; 4) - export CXX="clang++-10" + export CXX="clang++" export MSGPACK_CXX_VERSION="MSGPACK_CXX20=ON" export NO_BOOST="-DMSGPACK_NO_BOOST" ;; @@ -162,7 +162,7 @@ jobs: export ARCH=32 ;; 6) - export CXX="clang++-10" + export CXX="clang++" export API_VERSION=2 ;; 7) @@ -170,7 +170,7 @@ jobs: export API_VERSION=1 ;; 8) - export CXX="clang++-10" + export CXX="clang++" export CHAR_SIGN="unsigned" ;; 9) @@ -178,7 +178,7 @@ jobs: export X3_PARSE="ON" ;; 10) - export CXX="clang++-10" + export CXX="clang++" export ACTION="ci/build_regression.sh" ;; 11)