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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMS4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: https://code.forgejo.org/forgejo/end-to-end/pulls/1239 Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org> Co-authored-by: Renovate Bot <bot@kriese.eu> Co-committed-by: Renovate Bot <bot@kriese.eu>
87 lines
2.1 KiB
YAML
87 lines
2.1 KiB
YAML
on: [push]
|
|
|
|
env:
|
|
ASSERT_SHELL: 'set -x ; readlink /proc/$$/exe ; readlink /proc/$$/exe | grep '
|
|
|
|
jobs:
|
|
default:
|
|
# docker:docker://code.forgejo.org/oci/node:22-bookworm
|
|
runs-on: docker
|
|
steps:
|
|
- name: default is bash
|
|
run: |
|
|
${{ env.ASSERT_SHELL }} /bash
|
|
|
|
sh-fallback:
|
|
needs: [default]
|
|
# alpine:docker://code.forgejo.org/oci/alpine:latest
|
|
runs-on: alpine
|
|
steps:
|
|
- name: default is bash but with a fallback to sh in case it does not exist
|
|
run: |
|
|
${{ env.ASSERT_SHELL }} /busybox
|
|
|
|
sh-fallback-with-container:
|
|
needs: [sh-fallback]
|
|
runs-on: docker
|
|
container:
|
|
image: code.forgejo.org/oci/alpine:latest
|
|
steps:
|
|
- name: default is bash but with a fallback to sh in case it does not exist
|
|
run: |
|
|
${{ env.ASSERT_SHELL }} /busybox
|
|
|
|
defaults-run:
|
|
needs: [sh-fallback-with-container]
|
|
# alpine:docker://code.forgejo.org/oci/alpine:latest
|
|
runs-on: alpine
|
|
defaults:
|
|
run:
|
|
shell: sh
|
|
steps:
|
|
- name: default is sh which is an alias for busybox in alpine
|
|
run: |
|
|
${{ env.ASSERT_SHELL }} /busybox
|
|
|
|
python:
|
|
needs: [alpine]
|
|
runs-on: docker
|
|
container:
|
|
image: code.forgejo.org/oci/python:slim
|
|
steps:
|
|
- name: python => python {0}
|
|
shell: python
|
|
run: |
|
|
print("something")
|
|
|
|
other:
|
|
needs: [python]
|
|
runs-on: docker
|
|
container:
|
|
image: data.forgejo.org/oci/node:22-bookworm
|
|
steps:
|
|
- name: default is bash
|
|
run: |
|
|
${{ env.ASSERT_SHELL }} /bash
|
|
|
|
- name: bash => bash --noprofile --norc -e -o pipefail {0}
|
|
shell: bash
|
|
run: |
|
|
${{ env.ASSERT_SHELL }} /bash
|
|
shopt -o
|
|
shopt -o | grep --quiet 'pipefail.*on'
|
|
|
|
- name: sh => sh -e {0}
|
|
shell: sh
|
|
run: |
|
|
${{ env.ASSERT_SHELL }} /dash
|
|
|
|
- name: node => node {0}
|
|
shell: node
|
|
run: |
|
|
console.log("something")
|
|
|
|
- name: dash -e {0}
|
|
shell: dash -e {0}
|
|
run: |
|
|
${{ env.ASSERT_SHELL }} /dash
|