diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 74def61..aec6e86 100755 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -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" @@ -54,6 +54,7 @@ on: - "4.3.2" - "4.3.3" - "4.4.0" + - "4.4.1" - "latest" latest_r_version: description: | @@ -61,7 +62,7 @@ on: (Only relevant for rocker images). required: false type: string - default: "4.4.0" + default: "4.4.1" bioc_version: description: BioConductor Release required: true diff --git a/.github/workflows/scheduled.yaml b/.github/workflows/scheduled.yaml index ad5f86c..a530dd0 100644 --- a/.github/workflows/scheduled.yaml +++ b/.github/workflows/scheduled.yaml @@ -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 @@ -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", diff --git a/.github/workflows/security-scan.yaml b/.github/workflows/security-scan.yaml index ae79aa6..e39d5b3 100644 --- a/.github/workflows/security-scan.yaml +++ b/.github/workflows/security-scan.yaml @@ -15,7 +15,7 @@ jobs: strategy: matrix: image: - - r: '4.4.0' + - r: '4.4.1' bioc: '3.19' distro: rstudio steps: diff --git a/Dockerfile b/Dockerfile index f1fd7ed..62cc056 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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}