File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 6
6
env :
7
7
R_REMOTES_NO_ERRORS_FROM_WARNINGS : true
8
8
steps :
9
- # Change: Replaced the incompatible actions/checkout@v4 with a manual git clone.
10
- # The container has git installed. We must also fetch the full history for pkgdown.
9
+ # Change: Removed the unnecessary `git fetch --prune --unshallow` command.
11
10
- name : Checkout code
12
11
run : |
13
12
git clone https://github.com/${{ github.repository }} .
14
- git fetch --prune --unshallow
15
13
git checkout ${{ github.sha }}
16
14
17
15
- name : Query dependencies
18
16
run : |
19
17
install.packages('remotes')
20
18
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
21
19
shell : Rscript {0}
22
-
23
- # Change: The actions/cache step has been removed as it is incompatible.
24
20
25
21
- name : Install system dependencies
26
22
if : runner.os == 'Linux'
69
65
with :
70
66
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
71
67
BRANCH : gh-pages
72
- FOLDER : docs
68
+ FOLDER : docs
You can’t perform that action at this time.
0 commit comments