Skip to content

Commit 1f1410d

Browse files
committed
Update GitHub Actions yaml to use actions/checkout@v3
1 parent 8ee4061 commit 1f1410d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
pull_request:
88

99
env:
10-
USE_BSPM: "true"
1110
_R_CHECK_FORCE_SUGGESTS_: "false"
1211

1312
jobs:
@@ -21,13 +20,13 @@ jobs:
2120
runs-on: ${{ matrix.os }}
2221

2322
steps:
24-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
24+
25+
- name: Get Script
26+
run: curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh
2527

2628
- name: Bootstrap
27-
run: |
28-
curl -OLs https://eddelbuettel.github.io/r-ci/run.sh
29-
chmod 0755 run.sh
30-
./run.sh bootstrap
29+
run: ./run.sh bootstrap
3130

3231
- name: Dependencies
3332
run: ./run.sh install_all

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* R/fastLm.R (summary.fastLm,print.fastLm): Refer to correct and full
66
variable name df.residual in the returned object
77

8+
* .github/workflows/ci.yaml (jobs): Update to actions/checkout@v3
9+
810
2022-09-15 Jonah Gabry <[email protected]>
911

1012
* inst/skeleton/rcppeigen_hello_world.cpp: Correct typo

0 commit comments

Comments
 (0)