Skip to content

Commit 2c5c2ce

Browse files
authored
Merge pull request #598 from eitsupi/fix-wiki-update-job
Related to #597 It seems that the wiki update is failing due to a bug caused by two software version upgrades. - Error parsing docker-bake.json file (docker/buildx#1586) - `dplyr::arrange` does not work with `numeric_version` vector (tidyverse/dplyr#6680) This PR change the string that is believed to be causing the false positives in docker-bake.json and avoids the problem by using the old dplyr.
2 parents 23b6961 + 0cf526e commit 2c5c2ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/reports.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
needs: inspect
7070
runs-on: ubuntu-latest
7171
container:
72-
image: rocker/tidyverse:latest
72+
image: rocker/tidyverse@sha256:85f108b64aaac0280d8c9ca85831ae0ce351f7afc16d23fb9859f23ef4b1cc10
7373
steps:
7474
- name: Checkout main
7575
uses: actions/checkout@v3

bakefiles/extra.docker-bake.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"context": "./",
3131
"dockerfile": "dockerfiles/geospatial-ubuntugis_4.2.2.Dockerfile",
3232
"labels": {
33-
"org.opencontainers.image.title": "rocker/geospatial (ubuntugis)",
33+
"org.opencontainers.image.title": "rocker/geospatial on ubuntugis",
3434
"org.opencontainers.image.description": "Docker-based Geospatial toolkit for R, built on versioned Rocker image.",
3535
"org.opencontainers.image.base.name": "docker.io/rocker/verse:4.2.2",
3636
"org.opencontainers.image.version": "R-4.2.2"
@@ -55,7 +55,7 @@
5555
"context": "./",
5656
"dockerfile": "dockerfiles/geospatial-dev-osgeo_4.2.2.Dockerfile",
5757
"labels": {
58-
"org.opencontainers.image.title": "rocker/geospatial (dev-osgeo)",
58+
"org.opencontainers.image.title": "rocker/geospatial on dev-osgeo",
5959
"org.opencontainers.image.description": "Docker-based Geospatial toolkit for R, built on versioned Rocker image.",
6060
"org.opencontainers.image.base.name": "docker.io/rocker/verse:4.2.2",
6161
"org.opencontainers.image.version": "R-4.2.2"

0 commit comments

Comments
 (0)