From 2a3659b4b52506b1d16e1549228ee7eac24b4718 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti <13schishti@gmail.com> Date: Fri, 19 Dec 2025 01:18:03 +0000 Subject: [PATCH] Upgrade GitHub Actions for Node 24 compatibility Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com> --- .github/workflows/github-pages.yml | 2 +- .github/workflows/repolinter.yaml | 2 +- .github/workflows/update-data.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 992b77d34..fe36dd155 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -15,7 +15,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 with: submodules: true fetch-depth: 0 diff --git a/.github/workflows/repolinter.yaml b/.github/workflows/repolinter.yaml index ea04f89e9..83780d358 100644 --- a/.github/workflows/repolinter.yaml +++ b/.github/workflows/repolinter.yaml @@ -5,7 +5,7 @@ jobs: repolinter: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - uses: todogroup/repolinter-action@v1 with: config_file: .github/repolinter.yaml diff --git a/.github/workflows/update-data.yml b/.github/workflows/update-data.yml index 1a7b448f8..fbf86e9e7 100644 --- a/.github/workflows/update-data.yml +++ b/.github/workflows/update-data.yml @@ -10,14 +10,14 @@ jobs: update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 # update stats - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v6 with: python-version: '3.9' - name: cache pip - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}