Skip to content

Commit

Permalink
use lychee
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitlinger committed Dec 19, 2024
1 parent 7bd2d92 commit 7608947
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 27 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/markdown-link-check.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
name: markdown-link-check

on:
push:
branches: [ 'main*' ]
paths:
- '**.md'
pull_request:
branches: [ 'main*' ]
paths:
- '**.md'

jobs:
build:
runs-on: ubuntu-24.04

markdown-link-check:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v4
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: .markdown-link-check.json
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- uses: lycheeverse/lychee-action@v2
with:
# remove version after next release of lychee-action
lycheeVersion: latest
args: >
--include-fragments
--max-retries 6
.
10 changes: 0 additions & 10 deletions .markdown-link-check.json

This file was deleted.

7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ This is the first GA release of this distribution.
Please use `OTEL_*` environment variables instead
(in the spirit of making it easy to migrate away from this distribution).
- `GRAFANA_OTLP_DEBUG_LOGGING` and `GRAFANA_OTLP_LOGGING_EXPORTER_ENABLED`
([details](README.md#enable-otlp-debug-logging))
([details](https://grafana.com/docs/grafana-cloud/monitor-applications/application-observability/instrument/jvm/#otlp-debug-logging))
- `GRAFANA_CLOUD_INSTANCE_ID`, `GRAFANA_CLOUD_ZONE`, and `GRAFANA_CLOUD_API_KEY`
([details](README.md#grafana-cloud-otlp-gateway))
([details](https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/))

## 0.32.0-beta.1 (2023-11-22)

Expand All @@ -99,7 +99,8 @@ This is the first GA release of this distribution.
## 0.3.0 (2023-11-08)

- Add resource detectors for Google Cloud and AWS - mainly for Kubernetes monitoring.
- Add ability to drop metrics that are not needed for Application Observability ([docs](README.md#data-saver)).
- Add ability to drop metrics that are not needed for Application Observability
([docs](https://grafana.com/docs/grafana-cloud/monitor-applications/application-observability/instrument/jvm/#data-saver)).
- Rename grafana cloud environment variables `GRAFANA_OTLP_CLOUD_*` to `GRAFANA_CLOUD_*`.

## 0.2.0 (2023-10-27)
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ javaagent.jar as well as our custom extension.

- Java: `./gradlew spotlessApply`
- Markdown lint: `markdownlint -f .` (`-f` fixes simple violations, requires [markdownlint](https://github.com/DavidAnson/markdownlint#markdownlint))
- Markdown link checker: `find . -name '*.md' -print0 | xargs -0 -n1 markdown-link-check -c .markdown-link-check.json`
(requires [markdown-link-check](https://github.com/tcort/markdown-link-check))
- Markdown link checker: `lychee --include-fragments --max-retries 6 .`
(requires [lychee](https://github.com/lycheeverse/lychee))

## Smoke Tests

Expand Down

0 comments on commit 7608947

Please sign in to comment.