Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): Pin r-lib actions as a workaround for latest action updates #572

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/r-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:

steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
Expand All @@ -71,7 +70,9 @@ jobs:
R CMD INSTALL r --preclean
shell: bash

- uses: r-lib/actions/setup-r-dependencies@v2
# r-lib/actions/setup-r-dependencies pinned because the latest action on the
# v2 branch requires quarto-dev actions which have not yet been whitelisted by Apache Infra
- uses: r-lib/actions/setup-r-dependencies@f4937e0dc26f9b99c969cd3e4ca943b576e7f991
with:
extra-packages: any::rcmdcheck, arrow=?ignore-before-r=4.0.0
needs: check
Expand Down
Loading