Skip to content

Chore: More badges label/updates (#977) #90

Chore: More badges label/updates (#977)

Chore: More badges label/updates (#977) #90

Workflow file for this run

---
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: 2025 The Linux Foundation
# Updates Python dependencies and raises a pull request with changes
name: 'Dependencies Updates'
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
schedule:
- cron: '0 8 1 * *'
push:
branches:
- 'main'
- 'master'
paths:
- '**'
- '!.github/**'
- '!.*'
- '!pdm.lock'
- '!tox.ini'
env:
python-version: 3.11
permissions: {}
jobs:
python-dependencies:
name: 'Dependencies Updates'
runs-on: 'ubuntu-latest'
permissions:
# IMPORTANT: mandatory to raise the PR
id-token: write
pull-requests: write
repository-projects: write
contents: write
steps:
# Harden the runner used by this workflow
- uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
with:
egress-policy: audit
# yamllint disable-line rule:line-length
- uses: lfreleng-actions/python-dependencies-update-action@3b2b40361716c4f940eaf6876aa9e4841c58b146 # v0.1.1
with:
token: ${{ secrets.GITHUB_TOKEN }}