Skip to content

Update Grok flagship model from 4.5 to 4.6 (#827) #790

Update Grok flagship model from 4.5 to 4.6 (#827)

Update Grok flagship model from 4.5 to 4.6 (#827) #790

Workflow file for this run

name: Link Check
on:
push:
branches: [main, master]
paths:
- '**/*.md'
pull_request:
branches: [main, master]
paths:
- '**/*.md'
schedule:
- cron: '0 0 * * 0'
jobs:
link-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check links
uses: lycheeverse/lychee-action@v1.10.0
with:
args: --verbose --no-progress --timeout 30 --max-concurrency 6 --max-retries 0 './**/*.md'
fail: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}