This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new 2505a5f28 [CI] Fix the r-lib action permission issue (#1537)
2505a5f28 is described below
commit 2505a5f28ce21ba070cf1b9ebc3cf32b8fc2c330
Author: Jia Yu <[email protected]>
AuthorDate: Sun Aug 4 22:23:31 2024 -0700
[CI] Fix the r-lib action permission issue (#1537)
---
.github/workflows/docs.yml | 4 ++--
.github/workflows/r.yml | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 3f528c52d..c79509643 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -36,12 +36,12 @@ jobs:
- run: pip install mkdocs-git-revision-date-localized-plugin
- run: pip install mike
- run: sudo apt update
- - uses: r-lib/actions/setup-r@v2
+ - uses: r-lib/actions/[email protected]
with:
r-version: release
use-public-rspm: true
- name: Query R dependencies
- uses: r-lib/actions/setup-r-dependencies@v2
+ uses: r-lib/actions/[email protected]
with:
cache: true
extra-packages: |
diff --git a/.github/workflows/r.yml b/.github/workflows/r.yml
index 2ec23c770..9782e8977 100644
--- a/.github/workflows/r.yml
+++ b/.github/workflows/r.yml
@@ -60,12 +60,12 @@ jobs:
sudo apt-get -y remove --purge default-jdk adoptopenjdk-11-hotspot
|| :
shell: bash
- uses: actions/checkout@v4
- - uses: r-lib/actions/setup-r@v2
+ - uses: r-lib/actions/[email protected]
with:
r-version: ${{ matrix.r }}
use-public-rspm: true
- name: Query R dependencies
- uses: r-lib/actions/setup-r-dependencies@v2
+ uses: r-lib/actions/[email protected]
with:
cache: true
extra-packages: |
@@ -73,7 +73,7 @@ jobs:
any::rcmdcheck
working-directory : './R'
- name: Build and check R package
- uses: r-lib/actions/check-r-package@v2
+ uses: r-lib/actions/[email protected]
with:
build_args: 'c("--no-build-vignettes", "--no-manual")'
args: 'c("--no-build-vignettes", "--no-manual", "--no-tests")'