From f2d3c6ef6f340f65db433be7053b3a78b64e6ed7 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Wed, 22 Apr 2026 15:35:23 +0200 Subject: [PATCH 1/3] Bump release-pr actions to Node 24 versions Silences the Node 20 deprecation warning on the release-pr workflow. - actions/checkout v4.3.1 -> v6.0.2 - peter-evans/create-pull-request v6.0.5 -> v8.1.1 Co-authored-by: Isaac --- .github/workflows/release-pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index f27320f7..ecc15ddc 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -15,7 +15,7 @@ jobs: labels: linux-ubuntu-latest steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 0 fetch-tags: true @@ -29,8 +29,8 @@ jobs: - name: Create a release pull request id: cpr - # Version v6.0.5 - uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e + # Version v8.1.1 + uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 with: author: "eng-dev-ecosystem-bot " committer: "eng-dev-ecosystem-bot " From 5d661b703bf585279eafd0bc46d34c989e18ea9c Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Wed, 22 Apr 2026 15:39:43 +0200 Subject: [PATCH 2/3] Bump actions/checkout in test.yml and tag.yml to v6.0.2 - test.yml: 6x v4.3.1 and 1x v3.6.0 -> v6.0.2 - tag.yml: 1x v4.3.1 -> v6.0.2 Co-authored-by: Isaac --- .github/workflows/tag.yml | 2 +- .github/workflows/test.yml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 89032000..55902328 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -16,7 +16,7 @@ jobs: labels: linux-ubuntu-latest steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e815ad66..7e2e0dda 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: - windows-latest steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: path: ./setup-cli @@ -55,7 +55,7 @@ jobs: - windows-latest steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: path: ./setup-cli @@ -84,7 +84,7 @@ jobs: - windows-latest steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: path: ./setup-cli @@ -120,7 +120,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: path: ./setup-cli @@ -162,7 +162,7 @@ jobs: - windows-latest steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: path: ./setup-cli @@ -194,7 +194,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: path: ./setup-cli @@ -226,7 +226,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: path: ./setup-cli From fb68d03aeaa9b12b5672a48fedd04d2fa05ee13d Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Wed, 22 Apr 2026 16:33:46 +0200 Subject: [PATCH 3/3] Use trailing version comment on cpr action line Matches the style of the actions/checkout pins. Co-authored-by: Isaac --- .github/workflows/release-pr.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index ecc15ddc..b045b2e9 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -28,9 +28,7 @@ jobs: - name: Create a release pull request id: cpr - - # Version v8.1.1 - uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 + uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 with: author: "eng-dev-ecosystem-bot " committer: "eng-dev-ecosystem-bot "