From ec2d8e96b75e0fd9d798aff10b2e5532c0c4d1ab Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 1 Dec 2025 15:41:41 +0000 Subject: [PATCH] Replace Node.js with data.forgejo.org/oci/node (#1239) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [code.forgejo.org/oci/node](https://hub.docker.com/_/node) ([source](https://github.com/nodejs/docker-node)) → [data.forgejo.org/oci/node](https://hub.docker.com/_/node) | container | replacement | `22-bookworm` -> `22-bookworm` | | [code.forgejo.org/oci/node](https://hub.docker.com/_/node) ([source](https://github.com/nodejs/docker-node)) → [data.forgejo.org/oci/node](https://hub.docker.com/_/node) | container | replacement | `20-bookworm` -> `20-bookworm` | | [code.forgejo.org/oci/node](https://hub.docker.com/_/node) ([source](https://github.com/nodejs/docker-node)) → [data.forgejo.org/oci/node](https://hub.docker.com/_/node) | final | replacement | `20-bookworm` -> `20-bookworm` | This is a special PR that replaces `code.forgejo.org/oci/node` with the community suggested minimal stable replacement version. --- ### Configuration 📅 **Schedule**: Branch creation - "" (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://code.forgejo.org/forgejo/end-to-end/pulls/1239 Reviewed-by: earl-warren Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- .forgejo/workflows/end-to-end.yml | 2 +- Dockerfile | 2 +- actions/example-automerge/.forgejo/workflows/test.yml | 2 +- .../example-cache-proxy/getter/.forgejo/workflows/get.yml | 2 +- .../example-cache-proxy/storer/.forgejo/workflows/store.yml | 2 +- .../example-cache-pull-request/.forgejo/workflows/test.yml | 6 +++--- actions/example-cache/.forgejo/workflows/test.yml | 4 ++-- actions/example-context/.forgejo/workflows/test.yml | 2 +- actions/example-pull-request/.forgejo/workflows/test.yml | 2 +- actions/example-push/.forgejo/workflows/test.yml | 2 +- actions/example-shell/.forgejo/workflows/test.yml | 2 +- actions/example-tag/.forgejo/workflows/test.yml | 2 +- actions/example-with-docker-tcp/.forgejo/workflows/test.yml | 2 +- .../example-workflow-call/.forgejo/workflows/reusable.yml | 2 +- actions/example-workflow-call/.forgejo/workflows/test.yml | 4 ++-- 15 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.forgejo/workflows/end-to-end.yml b/.forgejo/workflows/end-to-end.yml index a4fe2d46..9cc24682 100644 --- a/.forgejo/workflows/end-to-end.yml +++ b/.forgejo/workflows/end-to-end.yml @@ -15,7 +15,7 @@ jobs: build: runs-on: docker container: - image: 'code.forgejo.org/oci/node:20-bookworm' + image: 'data.forgejo.org/oci/node:20-bookworm' outputs: built: "${{ steps.build.outputs.built }}" steps: diff --git a/Dockerfile b/Dockerfile index 7cf8242e..bfd7ed57 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM code.forgejo.org/oci/node:20-bookworm +FROM data.forgejo.org/oci/node:20-bookworm ENV PATH=$PATH:/setup-forgejo ENV _CONTAINERS_USERNS_CONFIGURED="" diff --git a/actions/example-automerge/.forgejo/workflows/test.yml b/actions/example-automerge/.forgejo/workflows/test.yml index 3ce5da04..7bb4ce29 100644 --- a/actions/example-automerge/.forgejo/workflows/test.yml +++ b/actions/example-automerge/.forgejo/workflows/test.yml @@ -5,7 +5,7 @@ jobs: test: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm options: "--volume /srv/example:/srv/example" steps: diff --git a/actions/example-cache-proxy/getter/.forgejo/workflows/get.yml b/actions/example-cache-proxy/getter/.forgejo/workflows/get.yml index ffaf9e9d..5dc434dd 100644 --- a/actions/example-cache-proxy/getter/.forgejo/workflows/get.yml +++ b/actions/example-cache-proxy/getter/.forgejo/workflows/get.yml @@ -4,7 +4,7 @@ jobs: build: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm steps: - name: cache restore id: cachestep diff --git a/actions/example-cache-proxy/storer/.forgejo/workflows/store.yml b/actions/example-cache-proxy/storer/.forgejo/workflows/store.yml index f8d42047..db9b101a 100644 --- a/actions/example-cache-proxy/storer/.forgejo/workflows/store.yml +++ b/actions/example-cache-proxy/storer/.forgejo/workflows/store.yml @@ -4,7 +4,7 @@ jobs: build: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm steps: - name: create something run: echo SOMETHING > /usr/local/bin/something diff --git a/actions/example-cache-pull-request/.forgejo/workflows/test.yml b/actions/example-cache-pull-request/.forgejo/workflows/test.yml index 9c4e7230..aad6b08b 100644 --- a/actions/example-cache-pull-request/.forgejo/workflows/test.yml +++ b/actions/example-cache-pull-request/.forgejo/workflows/test.yml @@ -8,7 +8,7 @@ jobs: save-cache: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm steps: - name: cache restore id: cachestep1 @@ -37,7 +37,7 @@ jobs: runs-on: docker needs: [save-cache] container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm steps: - name: cache restore id: cachestep2 @@ -61,7 +61,7 @@ jobs: runs-on: docker needs: [restore-cache] container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm options: "--volume /srv/example:/srv/example" steps: diff --git a/actions/example-cache/.forgejo/workflows/test.yml b/actions/example-cache/.forgejo/workflows/test.yml index a431d5f6..7acc5c59 100644 --- a/actions/example-cache/.forgejo/workflows/test.yml +++ b/actions/example-cache/.forgejo/workflows/test.yml @@ -4,7 +4,7 @@ jobs: save-cache: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm steps: - name: cache restore id: cachestep1 @@ -33,7 +33,7 @@ jobs: runs-on: docker needs: [save-cache] container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm steps: - name: cache restore id: cachestep2 diff --git a/actions/example-context/.forgejo/workflows/test.yml b/actions/example-context/.forgejo/workflows/test.yml index 6a5e6f25..07f80fa9 100644 --- a/actions/example-context/.forgejo/workflows/test.yml +++ b/actions/example-context/.forgejo/workflows/test.yml @@ -4,7 +4,7 @@ jobs: test: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm volumes: - /srv/example:/srv/example steps: diff --git a/actions/example-pull-request/.forgejo/workflows/test.yml b/actions/example-pull-request/.forgejo/workflows/test.yml index f906e12f..34a915a0 100644 --- a/actions/example-pull-request/.forgejo/workflows/test.yml +++ b/actions/example-pull-request/.forgejo/workflows/test.yml @@ -9,7 +9,7 @@ jobs: test: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm options: "--volume /srv/example:/srv/example" steps: diff --git a/actions/example-push/.forgejo/workflows/test.yml b/actions/example-push/.forgejo/workflows/test.yml index 6075b1a2..ebf53d1b 100644 --- a/actions/example-push/.forgejo/workflows/test.yml +++ b/actions/example-push/.forgejo/workflows/test.yml @@ -9,7 +9,7 @@ jobs: test: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm volumes: - /srv/example:/srv/example steps: diff --git a/actions/example-shell/.forgejo/workflows/test.yml b/actions/example-shell/.forgejo/workflows/test.yml index 67c9f989..cede5140 100644 --- a/actions/example-shell/.forgejo/workflows/test.yml +++ b/actions/example-shell/.forgejo/workflows/test.yml @@ -58,7 +58,7 @@ jobs: needs: [python] runs-on: docker container: - image: code.forgejo.org/oci/node:22-bookworm + image: data.forgejo.org/oci/node:22-bookworm steps: - name: default is bash run: | diff --git a/actions/example-tag/.forgejo/workflows/test.yml b/actions/example-tag/.forgejo/workflows/test.yml index ddc673e0..1a2e4b91 100644 --- a/actions/example-tag/.forgejo/workflows/test.yml +++ b/actions/example-tag/.forgejo/workflows/test.yml @@ -7,7 +7,7 @@ jobs: test: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm volumes: - /srv/example:/srv/example steps: diff --git a/actions/example-with-docker-tcp/.forgejo/workflows/test.yml b/actions/example-with-docker-tcp/.forgejo/workflows/test.yml index c33c2e7a..c4388ae8 100644 --- a/actions/example-with-docker-tcp/.forgejo/workflows/test.yml +++ b/actions/example-with-docker-tcp/.forgejo/workflows/test.yml @@ -4,7 +4,7 @@ jobs: build: runs-on: docker container: - image: code.forgejo.org/oci/node:20-bookworm + image: data.forgejo.org/oci/node:20-bookworm steps: - run: | ! test -e /var/run/docker.sock diff --git a/actions/example-workflow-call/.forgejo/workflows/reusable.yml b/actions/example-workflow-call/.forgejo/workflows/reusable.yml index aa6d029e..6181aff6 100644 --- a/actions/example-workflow-call/.forgejo/workflows/reusable.yml +++ b/actions/example-workflow-call/.forgejo/workflows/reusable.yml @@ -12,7 +12,7 @@ jobs: callee: runs-on: docker container: - image: code.forgejo.org/oci/node:22-bookworm + image: data.forgejo.org/oci/node:22-bookworm volumes: - /srv/example:/srv/example outputs: diff --git a/actions/example-workflow-call/.forgejo/workflows/test.yml b/actions/example-workflow-call/.forgejo/workflows/test.yml index 6185f8f7..fef61667 100644 --- a/actions/example-workflow-call/.forgejo/workflows/test.yml +++ b/actions/example-workflow-call/.forgejo/workflows/test.yml @@ -5,7 +5,7 @@ jobs: caller: runs-on: docker container: - image: code.forgejo.org/oci/node:22-bookworm + image: data.forgejo.org/oci/node:22-bookworm uses: ./.forgejo/workflows/reusable.yml with: parameter1: value1 @@ -16,7 +16,7 @@ jobs: needs: [caller] runs-on: docker container: - image: code.forgejo.org/oci/node:22-bookworm + image: data.forgejo.org/oci/node:22-bookworm steps: - run: | set -x