mirror of
https://github.com/netfun2000/hipudding-teslamate.git
synced 2026-02-27 09:44:28 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](eef61447b9...11bd71901b)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
777 B
YAML
29 lines
777 B
YAML
name: Check paths
|
|
|
|
on:
|
|
workflow_call:
|
|
# Map the workflow outputs to job outputs
|
|
outputs:
|
|
githubfolder:
|
|
description: "changes to .github folder"
|
|
value: ${{ jobs.check_paths.githubfolder }}
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check_paths:
|
|
runs-on: ubuntu-24.04
|
|
outputs:
|
|
githubfolder: ${{ steps.filter.outputs.githubfolder }}
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
|
id: filter
|
|
with:
|
|
base: "master" # needed to set as a called workflow does not have direct access to repository.default_branch
|
|
filters: |
|
|
githubfolder:
|
|
- '.github/**'
|