Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pkg_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
bazel-version: latest

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Build
run: bazel build -c opt //src:protocon
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_bazel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Cache Setup
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-bazel
with:
path: ~/.cache/bazel
Expand All @@ -26,7 +26,7 @@ jobs:
bazel-version: latest

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Build
run: >
Expand All @@ -44,7 +44,7 @@ jobs:
//...

- name: Upload Test Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: failure()
with:
name: bazel-testlogs-(${{ matrix.platform }})
Expand All @@ -64,7 +64,7 @@ jobs:
bazel-version: latest

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run tests
run: >
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Qt
uses: jurplel/install-qt-action@v4
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
run: ctest --timeout 300 -C $BUILD_TYPE

- name: Upload Test Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: failure()
with:
name: Testing-${{ matrix.platform }}
Expand All @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: CMake Version Set
uses: jwlawson/actions-setup-cmake@v2
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module(

bazel_dep(name = "fildesh", version = "0.2.0")
bazel_dep(name = "mdd-glu", version = "2.4.0")
bazel_dep(name = "platforms", version = "0.0.11")
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "rules_cc", version = "0.1.0")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "rules_peg", version = "0.1.18")
Expand Down