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

Bump actions/checkout from 3 to 4 #826

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clean_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cleanup
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/document.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -31,7 +31,7 @@
needs: roxygen2

- name: Document
run: roxygen2::roxygenise()

Check failure on line 34 in .github/workflows/document.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`roxygenise` is not a recognized word. (unrecognized-spelling)
shell: Rscript {0}

- name: Commit and push changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-changed-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-r@v2

Expand All @@ -20,7 +20,7 @@
with:
extra-packages: |
any::gh
any::lintr

Check failure on line 23 in .github/workflows/lint-changed-files.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`lintr` is not a recognized word. (unrecognized-spelling)
any::purrr
needs: check

Expand All @@ -41,4 +41,4 @@
lintr::lint_package(".", exclusions = exclusions_list)
shell: Rscript {0}
env:
LINTR_ERROR_ON_LINT: false

Check failure on line 44 in .github/workflows/lint-changed-files.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`LINTR` is not a recognized word. (unrecognized-spelling)
2 changes: 1 addition & 1 deletion .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples

Check failure on line 1 in .github/workflows/pkgdown.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`pkgdown` is not a recognized word. (check-file-path)
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
Expand All @@ -19,14 +19,14 @@
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}

Check failure on line 22 in .github/workflows/pkgdown.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`NETLIFY` is not a recognized word. (unrecognized-spelling)
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
isPush: ${{ github.event_name == 'push' }}
isPR: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '/pkgdown') }}

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout Pull Request
if: contains(env.isPR, 'true')
Expand Down Expand Up @@ -54,7 +54,7 @@
if: contains(env.isPush, 'true')
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "[email protected]"

Check failure on line 57 in .github/workflows/pkgdown.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`noreply` is not a recognized word. (unrecognized-spelling)
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)'

- name: Create website
Expand All @@ -66,12 +66,12 @@
- name: Create index file
if: contains(env.isPR, 'true')
run: |
echo '<!DOCTYPE html><html><head><meta http-equiv="refresh" content="0;URL=/dev/index.html" /> <script language="javascript"> window.location.replace('/dev/index.html')</script></head></html>' > ./docs/index.html

Check failure on line 69 in .github/workflows/pkgdown.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`javascript` is not a recognized word. (unrecognized-spelling)

- name: Deploy to Netlify
if: contains(env.isPR, 'true')
id: netlify-deploy

Check failure on line 73 in .github/workflows/pkgdown.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`netlify` is not a recognized word. (unrecognized-spelling)
uses: nwtgck/actions-netlify@v2

Check failure on line 74 in .github/workflows/pkgdown.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`nwtgck` is not a recognized word. (unrecognized-spelling)
with:
publish-dir: './docs'
production-branch: main-R
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup R
uses: r-lib/actions/setup-r@v2
Expand All @@ -31,7 +31,7 @@

- name: Test coverage
run: |
covr::codecov(

Check failure on line 34 in .github/workflows/test-coverage.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`codecov` is not a recognized word. (unrecognized-spelling)
quiet = FALSE,
clean = FALSE,
install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package")
Expand Down
Loading