diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/dependabot.yml | 15 | ||||
| -rw-r--r-- | .github/workflows/cmake-multi-platform.yml | 2 | 
2 files changed, 16 insertions, 1 deletions
| diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1a218f5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: +  - package-ecosystem: "github-actions" # See documentation for possible values +    directory: ".github/workflows" # Location of package manifests +    schedule: +      interval: "monthly" +    groups: +      actions: +        patterns: +          - "*" diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 79cdf87..0154b1f 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -29,7 +29,7 @@ jobs:              c_compiler: gcc      steps: -    - uses: actions/checkout@v4 +    - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938  # v4.2.0      - name: Set reusable strings        id: strings | 
