Update to R 4.6#44
Closed
Copilot wants to merge 3 commits into
Closed
Conversation
Closed
Agent-Logs-Url: https://github.com/d-morrison/qwt/sessions/5ccdb166-ec38-4409-b536-3e091bd66504 Co-authored-by: d-morrison <2474437+d-morrison@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s required and CI-provisioned R version to 4.6, aligning the package DESCRIPTION minimum R dependency with GitHub Actions and related automation environments.
Changes:
- Raise the package minimum R version in
DESCRIPTIONtoR (>= 4.6.0). - Pin
r-lib/actions/setup-r@v2tor-version: '4.6'across the relevant GitHub Actions workflows. - Pin the spellcheck workflow container from
rocker/verse:latesttorocker/verse:4.6.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
DESCRIPTION |
Raises the declared minimum supported R version to 4.6.0. |
.github/workflows/publish.yml |
Pins CI R version to 4.6 for publish workflow. |
.github/workflows/preview.yml |
Pins CI R version to 4.6 for preview builds. |
.github/workflows/check-bibliography-dois.yml |
Pins CI R version to 4.6 for DOI checks. |
.github/workflows/lint-project.yaml |
Pins CI R version to 4.6 for linting. |
.github/workflows/copilot-setup-steps.yml |
Pins Copilot agent environment R version to 4.6. |
.github/workflows/check-spelling.yaml |
Pins the spellcheck container image to an R 4.6-based tag. |
Comments suppressed due to low confidence (1)
.github/workflows/check-bibliography-dois.yml:26
setup-r-dependenciesis pinned to@HEAD, which makes this workflow non-reproducible and can break unexpectedly. Since this PR is pinning the R toolchain, it would be more consistent to pin this action to a stable tag (e.g.,@v2) or a specific commit SHA as well.
with:
r-version: '4.6'
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@HEAD
with:
…oesn't exist) Agent-Logs-Url: https://github.com/d-morrison/qwt/sessions/9d60643e-a1bc-4376-adae-a3476be2a26f Co-authored-by: d-morrison <2474437+d-morrison@users.noreply.github.com>
Contributor
Author
Fixed in e1ba4cc. The |
Owner
|
not needed yet |
Contributor
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pins R to 4.6 across all GitHub Actions workflows and raises the minimum R requirement in
DESCRIPTION.Changes
DESCRIPTION–Depends: R (>= 4.1.0)→R (>= 4.6.0)publish.yml,preview.yml,check-bibliography-dois.yml,lint-project.yaml– addr-version: '4.6'tor-lib/actions/setup-r@v2(previously unversioned)copilot-setup-steps.yml–r-version: 'release'→r-version: '4.6'check-spelling.yaml– kept asrocker/verse:latest(Rocker does not publish a4.6short-form tag)