Bump opentelemetry-lambda from 4e8e1d6
to 9030b49
#1098
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI build | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check all links in *.md files | |
id: lychee | |
uses: lycheeverse/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: >- | |
--verbose --no-progress **/*.md | |
--exclude "https://ingest.us0.signalfx.com.*" | |
--exclude "http://localhost*" | |
- name: Fail if there were link errors | |
run: exit ${{ steps.lychee.outputs.exit_code }} |