Skip to content

Commit

Permalink
feat: Add R 4.1.1 as latest (#102)
Browse files Browse the repository at this point in the history
Set latest image to R 4.4.1
  • Loading branch information
cicdguy authored Jul 20, 2024
1 parent 3804286 commit 84aa3b0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
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

0 comments on commit 84aa3b0

Please sign in to comment.