From 77a4877fad36fdb5426ca432c6331844de3a5582 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti <13schishti@gmail.com> Date: Sun, 25 Jan 2026 00:46:15 +0000 Subject: [PATCH] Upgrade GitHub Actions for Node 24 compatibility Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com> --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2e9f92502..c284ad731d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: docker-image: ["python:3.8", "python:3.9"] steps: - name: Checkout acme - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Run tests in docker run: | docker run --mount "type=bind,src=$(pwd),dst=/tmp/acme" \ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a47c332a3e..35d14d9aca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,9 +8,9 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v6 with: python-version: '3.x' - name: Install dependencies