Skip to content

Commit

Permalink
Renovate: r-lib/actions to 473c681 (#123)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 2, 2024
1 parent 22e26e8 commit 939b0c4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,20 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- uses: r-lib/actions/setup-pandoc@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/setup-pandoc@473c68190595b311a74f208fba61a8d8c0d4c247 # v2

- name: "Set up Chrome" # for PDF rendering
uses: browser-actions/setup-chrome@facf10a55b9caf92e0cc749b4f82bf8220989148 # v1.7.2

- name: "Setup R"
uses: r-lib/actions/setup-r@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
uses: r-lib/actions/setup-r@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- name: "Setup dependencies"
uses: r-lib/actions/setup-r-dependencies@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
uses: r-lib/actions/setup-r-dependencies@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
extra-packages: any::rcmdcheck
needs: check
Expand All @@ -64,6 +64,6 @@ jobs:
shell: Rscript {0}

- name: "Check"
uses: r-lib/actions/check-r-package@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
uses: r-lib/actions/check-r-package@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
upload-snapshots: true
6 changes: 3 additions & 3 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- uses: r-lib/actions/setup-pandoc@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/setup-pandoc@473c68190595b311a74f208fba61a8d8c0d4c247 # v2

- uses: r-lib/actions/setup-r@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/setup-r@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/setup-r-dependencies@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
extra-packages: any::pkgdown, any::withr, local::.
needs: website
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr-commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- uses: r-lib/actions/pr-fetch@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/pr-fetch@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- uses: r-lib/actions/setup-r@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/setup-r@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/setup-r-dependencies@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
extra-packages: any::roxygen2
needs: pr-document
Expand All @@ -40,7 +40,7 @@ jobs:
git add man/\* NAMESPACE
git commit -m 'Document'
- uses: r-lib/actions/pr-push@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/pr-push@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -53,11 +53,11 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- uses: r-lib/actions/pr-fetch@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/pr-fetch@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- uses: r-lib/actions/setup-r@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/setup-r@473c68190595b311a74f208fba61a8d8c0d4c247 # v2

- name: Install dependencies
run: install.packages("styler")
Expand All @@ -74,6 +74,6 @@ jobs:
git add \*.R
git commit -m 'Style'
- uses: r-lib/actions/pr-push@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/pr-push@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- uses: r-lib/actions/setup-r@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/setup-r@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
use-public-rspm: true

- name: "Set up pandoc"
uses: r-lib/actions/setup-pandoc@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
uses: r-lib/actions/setup-pandoc@473c68190595b311a74f208fba61a8d8c0d4c247 # v2

- name: "Set up Chrome" # for PDF rendering
uses: browser-actions/setup-chrome@facf10a55b9caf92e0cc749b4f82bf8220989148 # v1.7.2
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
printf "libxslt-dev\n" >> ${{ runner.temp }}/sysdeps.txt
sudo xargs apt-get install --fix-missing -y < ${{ runner.temp }}/sysdeps.txt || echo "Not on Ubuntu"
- uses: r-lib/actions/setup-r-dependencies@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 # v2
- uses: r-lib/actions/setup-r-dependencies@473c68190595b311a74f208fba61a8d8c0d4c247 # v2
with:
extra-packages: any::covr
needs: coverage
Expand Down

0 comments on commit 939b0c4

Please sign in to comment.