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

feat: Add R 4.1.1 as latest #102

Merged
merged 1 commit into from
Jul 20, 2024
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
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ on:
R version (also used as the tag to pull the origin image).
required: true
type: choice
default: "4.4.0"
default: "4.4.1"
options:
- "4.1.0"
- "4.1.1"
Expand All @@ -54,14 +54,15 @@ on:
- "4.3.2"
- "4.3.3"
- "4.4.0"
- "4.4.1"
- "latest"
latest_r_version:
description: |
R Version to be aliased as the 'latest' tag".
(Only relevant for rocker images).
required: false
type: string
default: "4.4.0"
default: "4.4.1"
bioc_version:
description: BioConductor Release
required: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
strategy:
matrix:
image:
- distro_tag: '4.4.0'
- distro_tag: '4.4.1'
bioc: '3.19'
distro: rstudio-local
origin: rocker
- distro_tag: '4.4.0'
- distro_tag: '4.4.1'
bioc: '3.19'
distro: rstudio
origin: rocker
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
"distribution": "${{ matrix.image.distro }}",
"r_version": "${{ matrix.image.distro_tag }}",
"bioc_version": "${{ matrix.image.bioc }}",
"latest_r_version": "4.4.0",
"latest_r_version": "4.4.1",
"latest_bioc_version": "3.19",
"tag": "",
"tag_latest": "true",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
image:
- r: '4.4.0'
- r: '4.4.1'
bioc: '3.19'
distro: rstudio
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build arguments
ARG ORIGIN=rocker
ARG ORIGIN_DISTRIBUTION=rstudio
ARG R_VERSION=4.4.0
ARG R_VERSION=4.4.1

# Fetch base image
FROM ${ORIGIN}/${ORIGIN_DISTRIBUTION}:${R_VERSION}
Expand Down
Loading