Skip to content

Commit

Permalink
Merge pull request #117
Browse files Browse the repository at this point in the history
Update GitHub workflows
  • Loading branch information
uatuko authored Nov 22, 2024
2 parents db6c1b3 + 3b6ea11 commit cd8cc47
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ jobs:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow_ref }}-${{ github.job }}
# Can't use 23.10 due to lcov-2.0-1 issue (ref: https://bugs.launchpad.net/ubuntu/+source/lcov/+bug/2029924)
container: ubuntu:23.04
container: ubuntu:24.04
services:
postgres:
env:
Expand All @@ -33,8 +32,8 @@ jobs:
libprotobuf-dev libprotoc-dev protobuf-compiler \
libpq-dev postgresql-client \
lcov llvm
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .build
key: ${{ runner.arch }}_${{ github.job }}-${{ hashFiles('cmake/dependencies.cmake') }}
Expand Down Expand Up @@ -65,7 +64,7 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
container: ubuntu:23.10
container: ubuntu:24.04

steps:
- name: Install dependencies
Expand All @@ -74,5 +73,5 @@ jobs:
apt-get install -y --no-install-recommends \
clang-format make
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make lint:ci
2 changes: 1 addition & 1 deletion src/svc/principals.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ template <typename T>
concept has_mutable_principal = requires(T t) {
{ t.mutable_principal() } -> std::same_as<ruek::api::v1::Principal *>;
};
}
} // namespace concepts

using namespace ruek::api::v1::Principals;

Expand Down

0 comments on commit cd8cc47

Please sign in to comment.