From 3bf87813cad988d4f1e278e4a3c99c3284349767 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti <13schishti@gmail.com> Date: Tue, 16 Dec 2025 16:50:45 +0000 Subject: [PATCH] Upgrade GitHub Actions for Node 24 compatibility Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com> --- .github/workflows/create-release-and-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-release-and-publish.yml b/.github/workflows/create-release-and-publish.yml index 620dc422..e4183250 100644 --- a/.github/workflows/create-release-and-publish.yml +++ b/.github/workflows/create-release-and-publish.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@master + uses: actions/checkout@v6 - name: Get version id: get_version run: echo "version=$(grep -Po '\d*\.\d*\.\d*' src/iris/__init__.py)" >> $GITHUB_OUTPUT @@ -28,7 +28,7 @@ jobs: draft: false prerelease: false - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v6 with: python-version: '3.x' - name: Install dependencies