From 30e4ed8b09aecba33d35101a9237888376dd557d Mon Sep 17 00:00:00 2001 From: Dan Fiedler Date: Sat, 5 Sep 2026 22:59:01 -0400 Subject: [PATCH] Pin GitHub Actions to full-length commit SHAs --- .github/dependabot.yml | 11 +++++++++++ .github/workflows/auto-publish.yml | 2 +- .github/workflows/autogen-docs.yml | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..2c48305b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + groups: + github-actions: + patterns: ["*"] + schedule: + interval: "weekly" + cooldown: + default-days: 7 diff --git a/.github/workflows/auto-publish.yml b/.github/workflows/auto-publish.yml index 8061435f..d1a824b7 100644 --- a/.github/workflows/auto-publish.yml +++ b/.github/workflows/auto-publish.yml @@ -15,7 +15,7 @@ jobs: working-directory: ./ steps: - name: Check out repository - uses: actions/checkout@v6 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 with: fetch-depth: 0 - name: Check out main diff --git a/.github/workflows/autogen-docs.yml b/.github/workflows/autogen-docs.yml index 5ea4271d..877f26a2 100644 --- a/.github/workflows/autogen-docs.yml +++ b/.github/workflows/autogen-docs.yml @@ -16,13 +16,13 @@ jobs: working-directory: ./generate-docs steps: - name: Check out repository - uses: actions/checkout@v6 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 - name: Make the script file executable run: | echo "Making script file executable" chmod +x ./GenerateDocs.sh - name: Set up node - uses: actions/setup-node@v6 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: # Use an Active LTS version of Node.js. node-version: 'lts/*'