mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-08-09 00:16:57 -07:00
c0389ef2d1
Bumps the actions-dependencies group with 3 updates in the / directory: [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action), [preactjs/compressed-size-action](https://github.com/preactjs/compressed-size-action) and [google-github-actions/run-gemini-cli](https://github.com/google-github-actions/run-gemini-cli). Updates `lycheeverse/lychee-action` from 2.6.1 to 2.9.0 - [Release notes](https://github.com/lycheeverse/lychee-action/releases) - [Commits](https://github.com/lycheeverse/lychee-action/compare/885c65f3dc543b57c898c8099f4e08c8afd178a2...e7477775783ea5526144ba13e8db5eec57747ce8) Updates `preactjs/compressed-size-action` from 2.8.0 to 2.10.0 - [Release notes](https://github.com/preactjs/compressed-size-action/releases) - [Commits](https://github.com/preactjs/compressed-size-action/compare/946a292cd35bd1088e0d7eb92b69d1a8d5b5d76a...f322c295dde06a1cb7ccaef105732dd8a726d1d9) Updates `google-github-actions/run-gemini-cli` from 0.1.11 to 0.1.22 - [Release notes](https://github.com/google-github-actions/run-gemini-cli/releases) - [Changelog](https://github.com/google-github-actions/run-gemini-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/run-gemini-cli/compare/a3bf79042542528e91937b3a3a6fbc4967ee3c31...f77273f4c914e4bf38440cf36a0369cb64a37489) --- updated-dependencies: - dependency-name: google-github-actions/run-gemini-cli dependency-version: 0.1.22 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-dependencies - dependency-name: lycheeverse/lychee-action dependency-version: 2.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-dependencies - dependency-name: preactjs/compressed-size-action dependency-version: 2.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
721 B
YAML
28 lines
721 B
YAML
name: 'Links'
|
|
|
|
on:
|
|
push:
|
|
branches: ['main']
|
|
pull_request:
|
|
branches: ['main']
|
|
repository_dispatch:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '00 18 * * *'
|
|
|
|
jobs:
|
|
linkChecker:
|
|
if: |-
|
|
${{ github.repository == 'google-gemini/gemini-cli' }}
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8' # ratchet:actions/checkout@v5
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: 'Link Checker'
|
|
id: 'lychee'
|
|
uses: 'lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8' # ratchet: lycheeverse/lychee-action@v2.9.0
|
|
with:
|
|
args: '--verbose --no-progress --accept 200,503 ./**/*.md'
|