diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2024-05-17 12:34:50 +0300 |
---|---|---|
committer | Martin Pärtel <martin.partel@gmail.com> | 2024-05-17 12:34:50 +0300 |
commit | 0a26c1d7d25849bb9161d35fda6734a48bff0dea (patch) | |
tree | c835331fe5134a470cc6e84b5ca798ff416872f1 | |
parent | 3f5e3cb1fcac5fb8034fa4712764317fab51ebe0 (diff) | |
download | bindfs-0a26c1d7d25849bb9161d35fda6734a48bff0dea.tar.gz |
GH Actions: use default GCC on ubuntu-22.04
Not sure what changed in the runners to make gcc-13 unavailable.
-rw-r--r-- | .github/workflows/tests.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 94c7b92..99f0c33 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,15 +23,15 @@ jobs: matrix: include: # FUSE 2 - - cc: gcc-13 - cxx: g++-13 + - cc: gcc + cxx: g++ clang_major_version: null clang_repo_suffix: null runs-on: ubuntu-22.04 fuse_package: libfuse-dev # FUSE 3 - - cc: gcc-13 - cxx: g++-13 + - cc: gcc + cxx: g++ clang_major_version: null clang_repo_suffix: null runs-on: ubuntu-22.04 |