Skip to content

Commit a971e42

Browse files
committed
chore: Update GitHub Actions to Node.js 24 compatible versions
- actions/checkout: v3/v4/v5 → v6 - actions/upload-artifact: v3/v4 → v6 - actions/download-artifact: v4/v5 → v7 - Maintains r-lib/actions at v2 (unchanged)
1 parent 7c4675f commit a971e42

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ASan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
ASAN_OPTIONS: detect_container_overflow=1:verify_asan_link_order=0
5050

5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353

5454
- name: Initialize ASan configuration
5555
run: |

.github/workflows/R-CMD-check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
steps:
5454
- name: Checkout git repo
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656

5757
- name: Temporarily bump package version
5858
run: |
@@ -112,7 +112,7 @@ jobs:
112112

113113
steps:
114114
- name: Checkout git repo
115-
uses: actions/checkout@v5
115+
uses: actions/checkout@v6
116116

117117
- name: Temporarily bump package version
118118
run: |
@@ -246,12 +246,12 @@ jobs:
246246

247247
steps:
248248
- name: Checkout PR branch
249-
uses: actions/checkout@v5
249+
uses: actions/checkout@v6
250250
with:
251251
path: pr
252252

253253
- name: Checkout target branch
254-
uses: actions/checkout@v5
254+
uses: actions/checkout@v6
255255
with:
256256
ref: ${{ github.event.pull_request.base.ref || 'main' }}
257257
path: main
@@ -301,14 +301,14 @@ jobs:
301301

302302
- name: Upload PR benchmark results
303303
if: failure()
304-
uses: actions/upload-artifact@v4
304+
uses: actions/upload-artifact@v6
305305
with:
306306
name: pr-benchmark-results
307307
path: pr/pr-benchmark-results/*.bench.Rds
308308

309309
- name: Upload main benchmark results
310310
if: failure()
311-
uses: actions/upload-artifact@v4
311+
uses: actions/upload-artifact@v6
312312
with:
313313
name: main-benchmark-results
314314
path: pr/main-benchmark-results/*.bench.Rds

.github/workflows/copilot-setup-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# If you do not check out your code, Copilot will do this for you.
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030

3131
- name: Set up R
3232
uses: r-lib/actions/setup-r@v2
@@ -55,7 +55,7 @@ jobs:
5555
check
5656
5757
- name: Checkout TreeTools source (for debugging support)
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v6
5959
with:
6060
repository: ms609/TreeTools
6161
path: TreeTools-source

.github/workflows/update-csl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
update-csl:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
- name: Download latest CSL file
1919
run: |

0 commit comments

Comments
 (0)