mirror of
https://github.com/curl/curl.git
synced 2026-04-12 12:21:42 +08:00
- update `actions/checkout` from 6.0.1 to 6.0.2 - update `ruff` from 0.14.11 to 0.14.14 - update `cryptography` from 46.0.3 to 46.0.4 - update `psutil` from 7.2.1 to 7.2.2 - update `websockets` from 15.0.1 to 16.0 Closes #20490 Closes #20491
41 lines
935 B
YAML
41 lines
935 B
YAML
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
name: 'URLs'
|
|
|
|
'on':
|
|
push:
|
|
branches:
|
|
- master
|
|
- '*/ci'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
schedule:
|
|
- cron: '10 5 * * *'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
linkcheck:
|
|
if: ${{ github.repository_owner == 'curl' || github.event_name != 'schedule' }}
|
|
name: 'linkcheck'
|
|
runs-on: ubuntu-slim
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: 'mdlinkcheck (dry run)'
|
|
if: ${{ github.event_name != 'schedule' }}
|
|
run: ./scripts/mdlinkcheck --dry-run
|
|
|
|
- name: 'mdlinkcheck'
|
|
if: ${{ github.event_name == 'schedule' }}
|
|
run: ./scripts/mdlinkcheck
|