Skip to content

Commit c7f64e4

Browse files
author
Shiran Rubin
committed
fix old plugins and lychee prefix
1 parent 3eb80e8 commit c7f64e4

File tree

5 files changed

+6684
-4456
lines changed

5 files changed

+6684
-4456
lines changed

.github/workflows/mkdocs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
pages: write
1616
pull-requests: write
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
submodules: "recursive"
2121
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
2222
- name: Setup Python
23-
uses: actions/setup-python@v1
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: "3.7"
2626
architecture: "x64"
@@ -32,7 +32,7 @@ jobs:
3232
- name: Build site
3333
run: mkdocs build
3434
- name: Deploy
35-
uses: peaceiris/actions-gh-pages@v3
35+
uses: peaceiris/actions-gh-pages@v4
3636
with:
3737
github_token: ${{ secrets.GITHUB_TOKEN }}
3838
publish_dir: ./site

docs/observability/recipes-observability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This dashboard recipe provides observability for AzDO pipelines by displaying va
3232

3333
## Python Logger Class for Application Insights using OpenCensus
3434

35-
The Azure SDK for Python contains an [Azure Monitor Opentelemetry Distro client library for Python ](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry). You can view samples of how to use the library in this [GitHub Repo](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry/samples). With this library you can easily collect traces, metrics, and logs.
35+
The Azure SDK for Python contains an [Azure Monitor Opentelemetry Distro client library for Python](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry). You can view samples of how to use the library in this [GitHub Repo](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry/samples). With this library you can easily collect traces, metrics, and logs.
3636

3737
## Java OpenTelemetry Examples
3838

lychee.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ exclude = [
102102
exclude_path = []
103103

104104
# URLs to check (supports regex). Has preference over all excludes.
105-
include = []
105+
include = [".*/docs/.*\\.md"]
106106

107107
# Exclude all private IPs from checking.
108108
# Equivalent to setting `exclude_private`, `exclude_link_local`, and

0 commit comments

Comments
 (0)