From 443015fdbe6ab905b6513a2701ac83b82a25cdea Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Thu, 30 Oct 2025 14:54:06 -0600 Subject: [PATCH 1/2] add dependabot file --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..37b9de0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: composer + directory: "/" + schedule: + interval: weekly + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly \ No newline at end of file From 378eb36fd50b9f46debe14dd45f5bc8c6b7b43cd Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Thu, 30 Oct 2025 14:54:15 -0600 Subject: [PATCH 2/2] validate the action yml file too --- .github/workflows/lint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 95a0848..0e027b4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,6 +4,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 + - uses: jazzsequence/github-action-validator@v1 - name: Lint run: shellcheck bin/*.sh \ No newline at end of file