From a9e8ca659bf32361ce92366339fa1cee3974561b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 03:42:40 +0000 Subject: [PATCH 1/2] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Update-FontsData.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Update-FontsData.yml b/.github/workflows/Update-FontsData.yml index 63b5b26..5b987f3 100644 --- a/.github/workflows/Update-FontsData.yml +++ b/.github/workflows/Update-FontsData.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 persist-credentials: false From db991622f580672ff53fecec109ee7f7877cb539 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 5 Jul 2026 23:57:12 +0200 Subject: [PATCH 2/2] Align Update-FontsData workflow with GitHub Actions coding standards - SHA-pin actions/checkout (v7.0.0) and PSModule/GitHub-Script (v1.8.0) - Pin runner image to ubuntu-24.04 instead of ubuntu-latest - Add concurrency to serialize runs that commit and push font data --- .github/workflows/Update-FontsData.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Update-FontsData.yml b/.github/workflows/Update-FontsData.yml index 5b987f3..fc08d70 100644 --- a/.github/workflows/Update-FontsData.yml +++ b/.github/workflows/Update-FontsData.yml @@ -7,19 +7,23 @@ on: permissions: {} +concurrency: + group: Update-FontsData + cancel-in-progress: false + jobs: Update-FontsData: name: Update-FontsData - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout repository - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: fetch-depth: 0 persist-credentials: false - name: Update-FontsData - uses: PSModule/GitHub-Script@v1 + uses: PSModule/GitHub-Script@1ee97bbc652d19c38ae12f6e1e47e9d9fbd12d0a # v1.8.0 with: ClientID: ${{ secrets.NERDFONTS_UPDATER_BOT_CLIENT_ID }} PrivateKey: ${{ secrets.NERDFONTS_UPDATER_BOT_PRIVATE_KEY }}