From 7a71dc00191e03d9e47acd33d17c36727ae16cfc Mon Sep 17 00:00:00 2001 From: codecalm Date: Wed, 24 Dec 2025 02:05:52 +0100 Subject: [PATCH] Update GitHub Actions workflows to use the latest versions of actions, enhancing performance and compatibility. --- .github/workflows/close-inactive.yml | 2 +- .github/workflows/sync-icons.yml | 2 +- .github/workflows/validate-pr.yml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/close-inactive.yml b/.github/workflows/close-inactive.yml index f04c84eb7..048d50d33 100644 --- a/.github/workflows/close-inactive.yml +++ b/.github/workflows/close-inactive.yml @@ -11,7 +11,7 @@ jobs: pull-requests: write issues: write steps: - - uses: actions/stale@v5 + - uses: actions/stale@v9 with: days-before-issue-stale: 360 days-before-issue-close: 14 diff --git a/.github/workflows/sync-icons.yml b/.github/workflows/sync-icons.yml index ac5db28db..a43f87b61 100644 --- a/.github/workflows/sync-icons.yml +++ b/.github/workflows/sync-icons.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout main branch - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/validate-pr.yml b/.github/workflows/validate-pr.yml index 3033101c6..0b9f6bb56 100644 --- a/.github/workflows/validate-pr.yml +++ b/.github/workflows/validate-pr.yml @@ -13,7 +13,7 @@ jobs: pull-requests: write contents: read steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -42,11 +42,11 @@ jobs: continue-on-error: true - name: Use Node.js 20 - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 - - uses: pnpm/action-setup@v3 + - uses: pnpm/action-setup@v4 name: Install pnpm with: version: 8 @@ -57,7 +57,7 @@ jobs: run: | echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ env.STORE_PATH }}