From 0057a037e9ae4ef565b4a0de98a203ca3afa3988 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Thu, 16 Apr 2026 15:01:58 +0700 Subject: [PATCH] fix: upgrade GitHub Actions to Node.js 24-compatible versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump actions/checkout v4→v5 and actions/setup-go v5→v6 to resolve Node.js 20 deprecation warnings. --- .github/workflows/sync-champions.yml | 4 ++-- .github/workflows/update-champions.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync-champions.yml b/.github/workflows/sync-champions.yml index ddc4f26..f839eab 100644 --- a/.github/workflows/sync-champions.yml +++ b/.github/workflows/sync-champions.yml @@ -10,10 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout loldle-data - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Checkout loldle - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: tiennm99/loldle token: ${{ secrets.LOLDLE_PAT }} diff --git a/.github/workflows/update-champions.yml b/.github/workflows/update-champions.yml index 68ffac9..325385c 100644 --- a/.github/workflows/update-champions.yml +++ b/.github/workflows/update-champions.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod