Fix: Ensure artefact path is handled correctly (#938) #82
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# SPDX-License-Identifier: Apache-2.0 | |
# SPDX-FileCopyrightText: 2025 The Linux Foundation | |
# Updates Python dependencies and raises a pull request with changes | |
name: "Python Dependencies Update ♻️" | |
# 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: "Update Python Dependencies" | |
# yamllint disable-line rule:line-length | |
uses: os-climate/osc-github-devops/.github/workflows/reuse-dependencies.yaml@main | |
permissions: | |
# IMPORTANT: mandatory to raise the PR | |
id-token: write | |
pull-requests: write | |
repository-projects: write | |
contents: write |