Compare commits

...

13 Commits

Author SHA1 Message Date
57566856f4 Update dependency gitea/act_runner to v0.2.13
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
Test Pull Requests / Build Image (pull_request) Failing after 2m38s
Test Pull Requests / Notify (pull_request) Has been skipped
2025-09-05 18:00:26 +00:00
731baf65f1 Update golang Docker tag to v1.25
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Test Pull Requests / Build Image (pull_request) Successful in 6m40s
Test Pull Requests / Notify (pull_request) Successful in 4s
Build Develop Image / Build Image (push) Successful in 7m24s
Build Develop Image / Notify (push) Successful in 6s
2025-08-24 21:00:26 +00:00
2f0881af98 Update golang Docker tag to v1.24-alpine3.22
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Test Pull Requests / Build Image (pull_request) Successful in 7m9s
Test Pull Requests / Notify (pull_request) Successful in 2s
Build Develop Image / Build Image (push) Successful in 7m33s
Build Develop Image / Notify (push) Successful in 2s
2025-06-12 21:00:23 +00:00
475d052b31 Update golang Docker tag to v1.24
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Test Pull Requests / Build Image (pull_request) Successful in 6m11s
Test Pull Requests / Notify (pull_request) Successful in 3s
Build Develop Image / Build Image (push) Successful in 6m48s
Build Develop Image / Notify (push) Successful in 3s
2025-02-23 10:00:28 +00:00
626dbf803e Update docker Docker tag to v27.5.1
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Test Pull Requests / Build Image (pull_request) Successful in 7m22s
Test Pull Requests / Notify (pull_request) Successful in 3s
Build Develop Image / Build Image (push) Successful in 4m49s
Build Develop Image / Notify (push) Successful in 4s
2025-01-30 10:00:20 +00:00
a1a6fcfbed Update docker Docker tag to v27.5.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Test Pull Requests / Build Image (pull_request) Successful in 5m19s
Test Pull Requests / Notify (pull_request) Successful in 4s
Build Develop Image / Build Image (push) Successful in 5m19s
Build Develop Image / Notify (push) Successful in 3s
2025-01-29 01:00:20 +00:00
c249ef51df Update docker Docker tag to v27.4.1
Some checks are pending
renovate/stability-days Updates have not met minimum release age requirement
Test Pull Requests / Build Image (pull_request) Successful in 5m0s
Test Pull Requests / Notify (pull_request) Successful in 3s
Build Develop Image / Build Image (push) Successful in 5m18s
Build Develop Image / Notify (push) Successful in 3s
2024-12-21 08:00:30 +00:00
9312eb28e9 Update docker Docker tag to v27.4.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Test Pull Requests / Build Image (pull_request) Successful in 5m52s
Test Pull Requests / Notify (pull_request) Successful in 3s
Build Develop Image / Build Image (push) Successful in 6m6s
Build Develop Image / Notify (push) Successful in 2s
2024-12-21 07:00:20 +00:00
a340954a4e Update golang Docker tag to v1.23-alpine3.21
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Test Pull Requests / Build Image (pull_request) Successful in 5m14s
Test Pull Requests / Notify (pull_request) Successful in 2s
Build Develop Image / Build Image (push) Successful in 5m10s
Build Develop Image / Notify (push) Successful in 2s
2024-12-14 01:00:19 +00:00
0b2ad25ee4 Add minimum age requirement to renovate (#22) [ci skip]
Reviewed-on: #22
2024-09-28 22:21:39 +00:00
123b8b494b Update docker Docker tag to v27 (#21)
All checks were successful
Build Develop Image / Build Image (push) Successful in 6m30s
Build Develop Image / Notify (push) Successful in 3s
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| docker | final | major | `25.0.5-dind` -> `27.3.1-dind` |

---

### 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 is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xOC4xMiIsInVwZGF0ZWRJblZlciI6IjM4LjE4LjEyIiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6W119-->

Reviewed-on: #21
Co-authored-by: Renovate Bot <renovate@mrmeeb.stream>
Co-committed-by: Renovate Bot <renovate@mrmeeb.stream>
2024-09-28 22:14:49 +00:00
46e47394fd Improve renovate handling of golang version (#20) [skip ci]
Reviewed-on: #20
2024-09-28 20:40:17 +00:00
b1b059878d Bump golang up to 1.23 (#18)
All checks were successful
Build Develop Image / Build Image (push) Successful in 6m45s
Build Develop Image / Notify (push) Successful in 2s
Reviewed-on: #18
2024-09-28 20:22:57 +00:00
2 changed files with 15 additions and 5 deletions

View File

@ -1,8 +1,8 @@
FROM golang:1.23-alpine3.20 as builder FROM golang:1.25-alpine3.22 as builder
# Do not remove `git` here, it is required for getting runner version when executing `make build` # Do not remove `git` here, it is required for getting runner version when executing `make build`
RUN apk add --no-cache make git RUN apk add --no-cache make git
ARG ACT_VERSION=0.2.11 ARG ACT_VERSION=0.2.13
RUN git clone --depth 1 --branch v${ACT_VERSION} https://gitea.com/gitea/act_runner /opt/src/act_runner RUN git clone --depth 1 --branch v${ACT_VERSION} https://gitea.com/gitea/act_runner /opt/src/act_runner
@ -10,7 +10,7 @@ WORKDIR /opt/src/act_runner
RUN make clean && make build RUN make clean && make build
FROM docker:25.0.5-dind FROM docker:27.5.1-dind
USER root USER root
RUN apk add --no-cache \ RUN apk add --no-cache \
git bash supervisor python3 py3-pip git bash supervisor python3 py3-pip

View File

@ -1,10 +1,10 @@
{ {
"extends": [":automergeMinor", ":automergePr", ":automergeRequireAllStatusChecks", ":dependencyDashboard", ":disableRateLimiting", ":rebaseStalePrs"], "extends": [":automergeMinor", ":automergePr", ":automergeRequireAllStatusChecks", ":dependencyDashboard", ":disableRateLimiting", ":rebaseStalePrs"],
"baseBranches": ["develop"], "baseBranches": ["develop"],
"major": { "major": {
"dependencyDashboardApproval": true "dependencyDashboardApproval": true
}, },
"minimumReleaseAge": "7 days",
"customManagers": [ "customManagers": [
{ {
"customType": "regex", "customType": "regex",
@ -12,7 +12,17 @@
"matchStrings": ["ARG ACT_VERSION=(?<currentValue>.*)"], "matchStrings": ["ARG ACT_VERSION=(?<currentValue>.*)"],
"datasourceTemplate": "gitea-releases", "datasourceTemplate": "gitea-releases",
"depNameTemplate": "gitea/act_runner" "depNameTemplate": "gitea/act_runner"
} },
{
"description": "Manage Alpine OS versions in container image tags",
"customType": "regex",
"fileMatch": ["Dockerfile$"],
"matchStrings": [
"FROM\\s+(?<depName>[\\S]+?):(?<currentValue>[^@\\s]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?"
],
"versioningTemplate": "regex:^(?<compatibility>[\\S]*\\d+\\.\\d+(?:\\.\\d+)?(?:[\\S]*)?-alpine-?)(?<major>\\d+)\\.(?<minor>\\d+)(?:\\.(?<patch>\\d+))?$",
"datasourceTemplate": "docker"
}
], ],
"packageRules": [ "packageRules": [
{ {