Skip to content

Commit d84e598

Browse files
committed
pin mise
Signed-off-by: Gregor Zeitlinger <[email protected]>
1 parent 6be85c5 commit d84e598

File tree

7 files changed

+53
-3
lines changed

7 files changed

+53
-3
lines changed

.github/renovate.json5

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,45 @@
11
{
22
$schema: "https://docs.renovatebot.com/renovate-schema.json",
3-
extends: ["config:best-practices", "config:recommended"],
3+
extends: [
4+
"config:best-practices",
5+
"config:recommended"
6+
],
47
platformCommit: "enabled",
58
automerge: true,
69
ignorePaths: [
7-
"**/simpleclient-archive/**", // old projects
10+
"**/simpleclient-archive/**",
11+
// old projects
812
// agent resources packages an OTel API that is the minimum required API version
913
"**/prometheus-metrics-exporter-opentelemetry-otel-agent-resources/pom.xml",
1014
],
11-
labels: ["dependencies"],
15+
labels: [
16+
"dependencies"
17+
],
18+
mackageRules: [
19+
{
20+
matchPackageNames: [
21+
"jdx/mise"
22+
],
23+
groupName: "mise",
24+
schedule: [
25+
"before 4am on monday"
26+
],
27+
}
28+
],
29+
customManagers: [
30+
{
31+
customType: "regex",
32+
description: "update mise",
33+
managerFilePatterns: [
34+
"/(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$/",
35+
"/(^|/)action\\.ya?ml$/"
36+
],
37+
datasourceTemplate: "github-release-attachments",
38+
packageNameTemplate: "jdx/mise",
39+
depNameTemplate: "mise",
40+
matchStrings: [
41+
"jdx/mise-action.*\\n\\s*with:\\s*\\n\\s*version: [\"']?(?<currentValue>v[.\\d]+)[\"']?\\s*\\n\\s*sha256: [\"']?(?<currentDigest>\\w+)[\"']?"
42+
],
43+
},
44+
]
1245
}

.github/workflows/acceptance-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ jobs:
1414
persist-credentials: false
1515
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616
- uses: jdx/mise-action@bfb9fa0b029db830a8c570757cee683df207a6c5 # v2.4.0
17+
with:
18+
version: v2025.7.19
19+
sha256: 73c7d061d1654e64cc8d98bfaa52939e0f034292d70b7b735a3795d6a293dfda
1720
- name: Run acceptance tests
1821
run: mise run acceptance-test

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
with:
1414
persist-credentials: false
1515
- uses: jdx/mise-action@bfb9fa0b029db830a8c570757cee683df207a6c5 # v2.4.0
16+
with:
17+
version: v2025.7.19
18+
sha256: 73c7d061d1654e64cc8d98bfaa52939e0f034292d70b7b735a3795d6a293dfda
1619
- name: Cache local Maven repository
1720
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
1821
with:

.github/workflows/github-pages.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
fetch-depth: 0
4040
- uses: jdx/mise-action@bfb9fa0b029db830a8c570757cee683df207a6c5 # v2.4.0
4141
with:
42+
version: v2025.7.19
43+
sha256: 73c7d061d1654e64cc8d98bfaa52939e0f034292d70b7b735a3795d6a293dfda
4244
cache: "false"
4345
- name: Setup Pages
4446
id: pages

.github/workflows/lint-rest.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ jobs:
1414
persist-credentials: false
1515
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616
- uses: jdx/mise-action@bfb9fa0b029db830a8c570757cee683df207a6c5 # v2.4.0
17+
with:
18+
version: v2025.7.19
19+
sha256: 73c7d061d1654e64cc8d98bfaa52939e0f034292d70b7b735a3795d6a293dfda
1720
- name: Lint
1821
run: mise run lint-rest

.github/workflows/native-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
persist-credentials: false
1515
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616
- uses: jdx/mise-action@bfb9fa0b029db830a8c570757cee683df207a6c5 # v2.4.0
17+
with:
18+
version: v2025.7.19
19+
sha256: 73c7d061d1654e64cc8d98bfaa52939e0f034292d70b7b735a3795d6a293dfda
1720
env:
1821
MISE_ENV: native
1922
- name: Run native tests

.github/workflows/test-release-build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
with:
1818
persist-credentials: false
1919
- uses: jdx/mise-action@bfb9fa0b029db830a8c570757cee683df207a6c5 # v2.4.0
20+
with:
21+
version: v2025.7.19
22+
sha256: 73c7d061d1654e64cc8d98bfaa52939e0f034292d70b7b735a3795d6a293dfda
2023
- name: Cache local Maven repository
2124
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
2225
with:

0 commit comments

Comments
 (0)