Skip to content

Commit fbdf380

Browse files
committed
Migrate to Node 20 actions
1 parent 23ae54b commit fbdf380

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/cross-platform.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
TZ: UTC
2929
steps:
3030
- name: Checkout workflowr-pkg-tests
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
with:
3333
path: workflowr-pkg-tests
3434
- name: Checkout workflowr
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
repository: workflowr/workflowr
3838
path: workflowr

.github/workflows/current.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
RSPM: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"
1212
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
repository: "workflowr/workflowr"
1717
- name: Install system dependencies
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
r-version: "release"
4242
- name: Restore R package cache
43-
uses: actions/cache@v3
43+
uses: actions/cache@v4
4444
with:
4545
path: ${{ env.R_LIBS_USER }}/*
4646
key: ubuntu-20.04-${{ steps.install-r.outputs.installed-r-version }}-1-${{ hashFiles('DESCRIPTION') }}
@@ -71,7 +71,7 @@ jobs:
7171
shell: bash
7272
- name: Upload check results
7373
if: failure()
74-
uses: actions/upload-artifact@main
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: current-results
7777
path: workflowr.Rcheck

.github/workflows/future.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
RSPM: "https://packagemanager.rstudio.com/cran/__linux__/jammy/latest"
1212
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
repository: "workflowr/workflowr"
1717
- name: Install system dependencies
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
r-version: "devel"
4141
- name: Restore R package cache
42-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4343
with:
4444
path: ${{ env.R_LIBS_USER }}/*
4545
key: ubuntu-22.04-${{ steps.install-r.outputs.installed-r-version }}-1-${{ hashFiles('DESCRIPTION') }}
@@ -90,7 +90,7 @@ jobs:
9090
shell: bash
9191
- name: Upload check results
9292
if: failure()
93-
uses: actions/upload-artifact@main
93+
uses: actions/upload-artifact@v4
9494
with:
9595
name: future-results
9696
path: workflowr.Rcheck

.github/workflows/legacy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1212
steps:
1313
- name: "Checkout workflowr-pkg-tests"
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
path: "workflowr-pkg-tests"
1717
- name: "Checkout workflowr"
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
repository: "workflowr/workflowr"
2121
path: "workflowr"
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
r-version: 3.3.3
4646
- name: Restore R package cache
47-
uses: actions/cache@v3
47+
uses: actions/cache@v4
4848
with:
4949
path: ${{ env.R_LIBS_USER }}/*
5050
key: ubuntu-20.04-${{ steps.install-r.outputs.installed-r-version }}-1-${{ hashFiles('DESCRIPTION') }}
@@ -71,7 +71,7 @@ jobs:
7171
working-directory: "workflowr"
7272
- name: Upload check results
7373
if: failure()
74-
uses: actions/upload-artifact@main
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: legacy-results
7777
path: workflowr/workflowr.Rcheck

.github/workflows/pandocless.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
_R_CHECK_CRAN_INCOMING_: TRUE
1414
_R_CHECK_CRAN_INCOMING_REMOTE_: FALSE
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
repository: "workflowr/workflowr"
1919
- name: Setup r2u

.github/workflows/spell-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-22.04
99
name: spell-check
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
with:
1313
repository: "workflowr/workflowr"
1414
- name: Setup r2u

.github/workflows/update-conda-lockfiles.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run:
2424
shell: ${{ matrix.config.shell }}
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- name: Setup Mambaforge
2828
uses: conda-incubator/setup-miniconda@v2
2929
with:

0 commit comments

Comments
 (0)