Skip to content

chore(deps): bump github.com/jackc/pgx/v5 from 5.6.0 to 5.9.0 #10683

chore(deps): bump github.com/jackc/pgx/v5 from 5.6.0 to 5.9.0

chore(deps): bump github.com/jackc/pgx/v5 from 5.6.0 to 5.9.0 #10683

Workflow file for this run

name: Check links from the UI
on:
workflow_dispatch:
pull_request:
branches:
- master
schedule:
- cron: '0 1 * * *' # once a day at 1 am
jobs:
preview:
name: Check links from UI
runs-on: ubuntu-24.04
if: github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]'
steps:
- name: Check-out
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install dependencies
working-directory: docs
run: pip install -r requirements-docs.txt
- name: Checkout the documentation repository
uses: actions/checkout@v6
with:
repository: treeverse/docs-lakeFS-community
fetch-depth: 1
token: ${{ secrets.TREEVERSE_CI_TOKEN }}
path: docs/docs-repo
- name: Configure Git
working-directory: docs/docs-repo
run: |
git config --global user.name "treeverser"
git config --global user.email "treeverser@treeverse.io"
- name: Build latest
working-directory: docs/docs-repo
env:
GITHUB_TOKEN: ${{ secrets.TREEVERSE_CI_TOKEN }}
run: |
mike deploy --config-file ../mkdocs.yml --branch main dev --update-aliases latest
- name: Get links to check
id: get-links
run: |
escaped_pwd=$(pwd | sed 's/[\/&]/\\&/g')
echo $pwd
echo $escaped_pwd
ls -l
find webui/src -type f ! -name "*.js" -exec grep -Eo 'href="([^"]*)"' {} \; | \
cut -d'"' -f2 | \
grep -v -e "^/" -e "^#" | \
sed "s/https:\/\/community.lakefs.io/file:\/\/$escaped_pwd\/docs\/docs-repo/" > /tmp/links_to_check.txt
- name: Check links
uses: lycheeverse/lychee-action@v2
with:
args: /tmp/links_to_check.txt
fail: true
jobSummary: true
format: markdown
output: /tmp/lychee/results.md