From 9aa7520f896a7127896d424fc8412de1ef47724b Mon Sep 17 00:00:00 2001 From: Dan Fiedler Date: Sun, 23 Aug 2026 13:16:01 -0400 Subject: [PATCH] Pin GitHub Actions to full-length commit SHAs --- .github/dependabot.yml | 11 +++++++++++ .github/workflows/CI_linux.yml | 4 ++-- .github/workflows/CI_mac.yml | 4 ++-- .github/workflows/CI_windows.yml | 4 ++-- 4 files changed, 17 insertions(+), 6 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/CI_linux.yml b/.github/workflows/CI_linux.yml index 3746b9cd..d885b32a 100644 --- a/.github/workflows/CI_linux.yml +++ b/.github/workflows/CI_linux.yml @@ -18,14 +18,14 @@ jobs: node-version: [22.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@a37ce9120846195fa4ece8f58b268e6043cb2f26 # v3.7.0 - name: Configuring Git LF Settings run: | git config --global core.autocrlf false - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1 with: node-version: ${{ matrix.node-version }} diff --git a/.github/workflows/CI_mac.yml b/.github/workflows/CI_mac.yml index 1b1f7721..4e081c49 100644 --- a/.github/workflows/CI_mac.yml +++ b/.github/workflows/CI_mac.yml @@ -18,14 +18,14 @@ jobs: node-version: [22.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@a37ce9120846195fa4ece8f58b268e6043cb2f26 # v3.7.0 - name: Configuring Git LF Settings run: | git config --global core.autocrlf false - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1 with: node-version: ${{ matrix.node-version }} diff --git a/.github/workflows/CI_windows.yml b/.github/workflows/CI_windows.yml index 5eef074d..e3f065f2 100644 --- a/.github/workflows/CI_windows.yml +++ b/.github/workflows/CI_windows.yml @@ -18,14 +18,14 @@ jobs: node-version: [22.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@a37ce9120846195fa4ece8f58b268e6043cb2f26 # v3.7.0 - name: Configuring Git LF Settings run: | git config --global core.autocrlf false - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1 with: node-version: ${{ matrix.node-version }}