Skip to content

Commit a0156d7

Browse files
authored
Merge pull request #893 from rstudio/connect-2025.01.0-docker
Bump Connect to version 2025.01.0
2 parents 685cadf + e818804 commit a0156d7

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

.github/actions/bake-test-push/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ runs:
119119
# Build, test, and push image
120120
- name: Build
121121
id: build
122-
uses: docker/bake-action@v4
122+
uses: docker/bake-action@v5
123123
with:
124124
targets: "${{ inputs.target }}"
125125
push: false
@@ -154,7 +154,7 @@ runs:
154154
category: "${{ inputs.target }}-snyk-vulnerabilities"
155155

156156
- name: Push - ${{ inputs.push-image }}
157-
uses: docker/bake-action@v4
157+
uses: docker/bake-action@v5
158158
with:
159159
targets: "${{ inputs.target }}"
160160
push: ${{ inputs.push-image }}

.github/workflows/clean-registry.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: cleanup-dockerhub
1515
steps:
1616
- name: Check Out Repo
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Run Script
2020
run: ./tools/dockerhub_clean.py

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v4
3838

3939
- name: Run Hadolint
40-
uses: hadolint/hadolint-action@v3.0.0
40+
uses: hadolint/hadolint-action@v3.1.0
4141
with:
4242
dockerfile: ${{ matrix.config.product }}/Dockerfile.${{ matrix.config.os }}
4343
config: ./hadolint.yaml

.github/workflows/update-readme.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/checkout@v3
3333

3434
- name: Docker Hub Description
35-
uses: peter-evans/dockerhub-description@v3.1.2
35+
uses: peter-evans/dockerhub-description@v4.0.0
3636
with:
3737
username: ${{ secrets.DOCKER_HUB_USERNAME }}
3838
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sed_vars := if os() == "macos" { "-i ''" } else { "-i" }
77

88
BUILDX_PATH := ""
99

10-
RSC_VERSION := "2024.12.0"
10+
RSC_VERSION := "2025.01.0"
1111
RSPM_VERSION := "2024.11.0-7"
1212
RSW_VERSION := "2024.12.0+467.pro1"
1313

connect-content-init/Dockerfile.ubuntu2204

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && \
99
apt-get install -y --no-install-recommends ca-certificates curl && \
1010
rm -rf /var/lib/apt/lists/*
1111

12-
ARG RSC_VERSION=2024.12.0
12+
ARG RSC_VERSION=2025.01.0
1313
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
1414
RUN mkdir -p /rsc-staging && \
1515
RSC_VERSION_URL=$(echo -n "${RSC_VERSION}" | sed 's/+/%2B/g') && \

connect-content-init/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Supported tags and respective Dockerfile links
1111

12-
* [`jammy`, `ubuntu2204`, `jammy-2024.12.0`, `ubuntu2204-2024.12.0`](https://github.com/rstudio/rstudio-docker-products/blob/main/connect/Dockerfile.2204)
12+
* [`jammy`, `ubuntu2204`, `jammy-2025.01.0`, `ubuntu2204-2025.01.0`](https://github.com/rstudio/rstudio-docker-products/blob/main/connect/Dockerfile.2204)
1313

1414
# RStudio Connect Content Init Container
1515

@@ -31,7 +31,7 @@ The version of the release package to use can be overridden with the
3131
`RSC_VERSION` build arg.
3232

3333
```console
34-
just build ubuntu2204 2024.12.0
34+
just build ubuntu2204 2025.01.0
3535
```
3636

3737
## Testing
@@ -56,7 +56,7 @@ just test
5656
You can see the different layers that make up the image:
5757

5858
```console
59-
docker history rstudio/rstudio-connect-content-init-preview:2024.12.0-dev-326
59+
docker history rstudio/rstudio-connect-content-init-preview:2025.01.0-dev-326
6060
```
6161

6262
NOTE: almost all the image size is pandoc.

connect/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
RSC_VERSION=2024.12.0
1+
RSC_VERSION=2025.01.0
22
R_VERSION=4.2.3
33
R_VERSION_ALT=4.1.3
44
PYTHON_VERSION=3.9.17

connect/Dockerfile.ubuntu2204

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ARG R_VERSION=4.2.3
77
ARG R_VERSION_ALT=4.1.3
88
ARG PYTHON_VERSION=3.9.17
99
ARG PYTHON_VERSION_ALT=3.8.17
10-
ARG RSC_VERSION=2024.12.0
10+
ARG RSC_VERSION=2025.01.0
1111
ARG QUARTO_VERSION=1.4.557
1212
ARG SCRIPTS_DIR=/opt/positscripts
1313

connect/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Supported tags and respective Dockerfile links
99

10-
* [`jammy`, `ubuntu2204`, `jammy-2024.12.0`, `ubuntu2204-2024.12.0`](https://github.com/rstudio/rstudio-docker-products/blob/main/connect/Dockerfile.2204)
10+
* [`jammy`, `ubuntu2204`, `jammy-2025.01.0`, `ubuntu2204-2025.01.0`](https://github.com/rstudio/rstudio-docker-products/blob/main/connect/Dockerfile.2204)
1111

1212
# What is Posit Connect?
1313

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Variable definitions ###
22
variable CONNECT_VERSION {
3-
default = "2024.12.0"
3+
default = "2025.01.0"
44
}
55

66
variable PACKAGE_MANAGER_VERSION {

0 commit comments

Comments
 (0)