Skip to content

Commit 83baf1d

Browse files
committed
Fix links and add link check
Also updating submodule to get link fixes from there
1 parent d72777a commit 83baf1d

File tree

5 files changed

+40
-4
lines changed

5 files changed

+40
-4
lines changed

.github/workflows/check-markdown.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# /********************************************************************************
2+
# * Copyright (c) 2024 Contributors to the Eclipse Foundation
3+
# *
4+
# * See the NOTICE file(s) distributed with this work for additional
5+
# * information regarding copyright ownership.
6+
# *
7+
# * This program and the accompanying materials are made available under the
8+
# * terms of the Apache License 2.0 which is available at
9+
# * http://www.apache.org/licenses/LICENSE-2.0
10+
# *
11+
# * SPDX-License-Identifier: Apache-2.0
12+
# ********************************************************************************/
13+
14+
name: check-markdown
15+
16+
on:
17+
push:
18+
pull_request:
19+
workflow_dispatch:
20+
21+
concurrency:
22+
group: ${{ github.ref }}-${{ github.workflow }}
23+
cancel-in-progress: true
24+
25+
jobs:
26+
check-doc-links:
27+
name: Check links in markdown
28+
runs-on: ubuntu-latest
29+
30+
steps:
31+
- uses: actions/checkout@v4
32+
- uses: eclipse-kuksa/kuksa-actions/check-markdown@4

.github/workflows/dash.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
branches:
77
- main
88

9+
concurrency:
10+
group: ${{ github.ref }}-${{ github.workflow }}
11+
cancel-in-progress: true
12+
913
jobs:
1014
check-dash:
1115
runs-on: ubuntu-latest

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ More about Eclipse KUKSA can be found in the [repository](https://github.com/ecl
88

99
KUKSA Python SDK provides both a command-line interface (CLI) and a standalone library to interact with either
1010
[KUKSA Server](https://github.com/eclipse/kuksa.val/tree/master/kuksa-val-server) or
11-
[KUKSA Databroker](https://github.com/eclipse/kuksa.val/tree/master/kuksa_databroker).
11+
[KUKSA Databroker](https://github.com/eclipse-kuksa/kuksa-databroker).
1212

1313

1414
## Building and Installing the KUKSA Python SDK
@@ -45,7 +45,7 @@ For more details see the KUKSA Python SDK [Docker documentation](https://github.
4545
## Using KUKSA Python SDK as library
4646

4747
The KUKSA Python SDK provides three APIS for connecting and communicating with [KUKSA Server](https://github.com/eclipse/kuksa.val/tree/master/kuksa-val-server)
48-
and [KUKSA Databroker](https://github.com/eclipse/kuksa.val/tree/master/kuksa_databroker).
48+
and [KUKSA Databroker](https://github.com/eclipse-kuksa/kuksa-databroker).
4949
For more details see the KUKSA Python SDK [Library documentation](https://github.com/eclipse-kuksa/kuksa-python-sdk/blob/main/docs/library.md).
5050

5151
## Contributing to KUKSA Python SDK

docs/library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This package holds 3 different APIs depending on your application's requirements
2525

2626
## TLS configuration
2727

28-
Clients like [KUKSA CAN Feeder](https://github.com/eclipse/kuksa.val.feeders/tree/main/dbc2val)
28+
Clients like [KUKSA CAN Provider](https://github.com/eclipse-kuksa/kuksa-can-provider)
2929
that use KUKSA Client library must typically set the path to the root CA certificate.
3030
If the path is set the VSSClient will try to establish a secure connection.
3131

submodules/kuksa-databroker

Submodule kuksa-databroker updated 68 files

0 commit comments

Comments
 (0)