Update code.forgejo.org/forgejo/runner Docker tag to v3.5.1 #33

Open
renovate wants to merge 1 commit from renovate/code.forgejo.org-forgejo-runner-3.x into main
Collaborator

This PR contains the following updates:

Package Update Change
code.forgejo.org/forgejo/runner (source) minor 3.2.0 -> 3.5.1

⚠️ Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

forgejo/runner (code.forgejo.org/forgejo/runner)

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.1

Compare Source

  • Fixes a regression introduced in 3.4.0 by which a job with no image explicitly set would
    be bound to the host
    network instead of a custom network (empty string in the configuration file).

v3.4.0

Compare Source

Although this version is able to run actions/upload-artifact@v4 and actions/download-artifact@v4, these actions will fail because it does not run against GitHub.com. A fork of those two actions with this check disabled is made available at:

and they can be used as shown in an example from the end-to-end test suite.

  • When running against codeberg.org, the default poll frequency is 30s instead of 2s.
  • Fix compatibility issue with actions/{upload,download}-artifact@v4.
  • Upgrade ACT v1.20.0 which brings:
    • [container].options from the config file is exposed in containers created by the workflows
    • the expressions in the value of jobs.<job-id>.runs-on are evaluated
    • fix a bug causing the evaluated expression of jobs.<job-id>.runs-on to fail if it was an array
    • mount act-toolcache:/opt/hostedtoolcache instead of act-toolcache:/toolcache
    • a few improvements to the readability of the error messages displayed in the logs
    • amd64 can be used instead of x86_64 and arm64 intead of aarch64 when specifying the architecture
    • fixed YAML parsing bugs preventing dispatch workflows to be parsed correctly
    • add support for runs-on.labels which is equivalent to runs-on followed by a list of labels
    • the expressions in the service ports and volumes values are evaluated
    • network aliases are only supported when the network is user specified, not when it is provided by the runner
  • If [runner].insecure is true in the configuration, insecure cloning actions is allowed

v3.3.0

Compare Source

  • Support IPv6 with addresses from a private range and NAT for
    docker:// with --enable-ipv6 and [container].enable_ipv6
    lxc:// always

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 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 this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [code.forgejo.org/forgejo/runner](https://forgejo.org) ([source](https://code.forgejo.org/forgejo/runner)) | minor | `3.2.0` -> `3.5.1` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the warning logs for more information. --- ### Release Notes <details> <summary>forgejo/runner (code.forgejo.org/forgejo/runner)</summary> ### [`v3.5.1`](https://code.forgejo.org/forgejo/runner/blob/HEAD/RELEASE-NOTES.md#351) [Compare Source](https://code.forgejo.org/forgejo/runner/compare/v3.5.0...v3.5.1) - Fix [CVE-2024-24557](https://nvd.nist.gov/vuln/detail/CVE-2024-24557) - [Add report_interval option to config](https://code.forgejo.org/forgejo/runner/pulls/220) to allow setting the interval of status and log reports ### [`v3.5.0`](https://code.forgejo.org/forgejo/runner/blob/HEAD/RELEASE-NOTES.md#350) [Compare Source](https://code.forgejo.org/forgejo/runner/compare/v3.4.1...v3.5.0) - [Allow graceful shutdowns](https://code.forgejo.org/forgejo/runner/pulls/202): when receiving a signal (INT or TERM) wait for running jobs to complete (up to shutdown_timeout). - [Fix label declaration](https://code.forgejo.org/forgejo/runner/pulls/176): Runner in daemon mode now takes labels found in config.yml into account when declaration was successful. - [Fix the docker compose example](https://code.forgejo.org/forgejo/runner/pulls/175) to workaround the race on labels. - [Fix the kubernetes dind example](https://code.forgejo.org/forgejo/runner/pulls/169). - [Rewrite ::group:: and ::endgroup:: commands like github](https://code.forgejo.org/forgejo/runner/pulls/183). - [Added opencontainers labels to the image](https://code.forgejo.org/forgejo/runner/pulls/195) - [Upgrade the default container to node:20](https://code.forgejo.org/forgejo/runner/pulls/203) ### [`v3.4.1`](https://code.forgejo.org/forgejo/runner/blob/HEAD/RELEASE-NOTES.md#341) [Compare Source](https://code.forgejo.org/forgejo/runner/compare/v3.4.0...v3.4.1) - Fixes a regression introduced in 3.4.0 by which a job with no image explicitly set would [be bound to the host](https://code.forgejo.org/forgejo/runner/issues/165) network instead of a custom network (empty string in the configuration file). ### [`v3.4.0`](https://code.forgejo.org/forgejo/runner/blob/HEAD/RELEASE-NOTES.md#340) [Compare Source](https://code.forgejo.org/forgejo/runner/compare/v3.3.0...v3.4.0) Although this version is able to run [actions/upload-artifact@v4](https://code.forgejo.org/actions/upload-artifact/src/tag/v4) and [actions/download-artifact@v4](https://code.forgejo.org/actions/download-artifact/src/tag/v4), these actions will fail because it does not run against GitHub.com. A fork of those two actions with this check disabled is made available at: - https://code.forgejo.org/forgejo/upload-artifact/src/tag/v4 - https://code.forgejo.org/forgejo/download-artifact/src/tag/v4 and they can be used as shown in [an example from the end-to-end test suite](https://code.forgejo.org/forgejo/end-to-end/src/branch/main/actions/example-artifacts-v4/.forgejo/workflows/test.yml). - When running against codeberg.org, the default poll frequency is 30s instead of 2s. - Fix compatibility issue with actions/{upload,download}-artifact@v4. - Upgrade ACT v1.20.0 which brings: - `[container].options` from the config file is exposed in containers created by the workflows - the expressions in the value of `jobs.<job-id>.runs-on` are evaluated - fix a bug causing the evaluated expression of `jobs.<job-id>.runs-on` to fail if it was an array - mount `act-toolcache:/opt/hostedtoolcache` instead of `act-toolcache:/toolcache` - a few improvements to the readability of the error messages displayed in the logs - `amd64` can be used instead of `x86_64` and `arm64` intead of `aarch64` when specifying the architecture - fixed YAML parsing bugs preventing dispatch workflows to be parsed correctly - add support for `runs-on.labels` which is equivalent to `runs-on` followed by a list of labels - the expressions in the service `ports` and `volumes` values are evaluated - network aliases are only supported when the network is user specified, not when it is provided by the runner - If `[runner].insecure` is true in the configuration, insecure cloning actions is allowed ### [`v3.3.0`](https://code.forgejo.org/forgejo/runner/blob/HEAD/RELEASE-NOTES.md#330) [Compare Source](https://code.forgejo.org/forgejo/runner/compare/v3.2.0...v3.3.0) - Support IPv6 with addresses from a private range and NAT for docker:// with --enable-ipv6 and \[container].enable_ipv6 lxc:// always </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **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 this update 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMDEuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEwMS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
renovate added 1 commit 2025-03-14 00:02:04 +00:00
This pull request can be merged automatically.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/code.forgejo.org-forgejo-runner-3.x:renovate/code.forgejo.org-forgejo-runner-3.x
git checkout renovate/code.forgejo.org-forgejo-runner-3.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git checkout main
git merge --no-ff renovate/code.forgejo.org-forgejo-runner-3.x
git checkout renovate/code.forgejo.org-forgejo-runner-3.x
git rebase main
git checkout main
git merge --ff-only renovate/code.forgejo.org-forgejo-runner-3.x
git checkout renovate/code.forgejo.org-forgejo-runner-3.x
git rebase main
git checkout main
git merge --no-ff renovate/code.forgejo.org-forgejo-runner-3.x
git checkout main
git merge --squash renovate/code.forgejo.org-forgejo-runner-3.x
git checkout main
git merge --ff-only renovate/code.forgejo.org-forgejo-runner-3.x
git checkout main
git merge renovate/code.forgejo.org-forgejo-runner-3.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: martyn/infra4talos#33
No description provided.