Skip to content

Commit f9eabb4

Browse files
authored
Instruct dependabot to not bump major versions (#47)
* Instruct dependabot to not bump major versions * Bump download action to v6
1 parent a790650 commit f9eabb4

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

.github/PklProject.deps.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
"resolvedDependencies": {
44
"package://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1": {
55
"type": "remote",
6-
"uri": "projectpackage://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.1.0",
6+
"uri": "projectpackage://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.2.0",
77
"checksums": {
8-
"sha256": "efe5b1f58648baeac651e88107e13ceb58860c8e28ac18098b857445dc0185b7"
8+
"sha256": "eac84e03db6815625a0a8f8dfe4597421284ad28f4425dbd72f529b236fea6b9"
99
}
1010
},
1111
"package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1": {
1212
"type": "local",
13-
"uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.1.1",
13+
"uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.1.2",
1414
"path": "../packages/pkl.impl.ghactions"
1515
},
1616
"package://pkg.pkl-lang.org/pkl-pantry/pkl.experimental.deepToTyped@1": {

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@ version: 2
22
updates:
33
- package-ecosystem: github-actions
44
directory: /
5+
ignore:
6+
- dependency-name: '*'
7+
update-types:
8+
- version-update:semver-major
59
schedule:
610
interval: weekly

packages/pkl.impl.ghactions/DependabotManagedCI.pkl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,14 @@ local effectiveDependabot = (dependabot) {
5959
schedule {
6060
interval = "weekly"
6161
}
62+
ignore {
63+
new {
64+
`dependency-name` = "*"
65+
`update-types` {
66+
"version-update:semver-major"
67+
}
68+
}
69+
}
6270
}
6371
}
6472
}

packages/pkl.impl.ghactions/PklCI.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ local withPublishTestResultsForMultipleJobs: Mixin<Workflow.Jobs> = (it) -> (it)
418418
checks = "write"
419419
}
420420
steps {
421-
(catalog.`actions/download-artifact@v5`) {
421+
(catalog.`actions/download-artifact@v6`) {
422422
with {
423423
pattern = "\(TEST_RESULT_XML_ARTIFACT_NAME)-*"
424424
}

packages/pkl.impl.ghactions/PklProject

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
amends "../basePklProject.pkl"
1818

1919
package {
20-
version = "1.1.1"
20+
version = "1.1.2"
2121
}
2222

2323
dependencies {
2424
["com.github.actions"] {
25-
uri = "package://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.1.0"
25+
uri = "package://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.2.0"
2626
}
2727
["com.github.dependabot"] {
2828
uri = "package://pkg.pkl-lang.org/pkl-pantry/com.github.dependabot@1.0.0"

packages/pkl.impl.ghactions/PklProject.deps.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
},
1111
"package://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1": {
1212
"type": "remote",
13-
"uri": "projectpackage://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.1.0",
13+
"uri": "projectpackage://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.2.0",
1414
"checksums": {
15-
"sha256": "efe5b1f58648baeac651e88107e13ceb58860c8e28ac18098b857445dc0185b7"
15+
"sha256": "eac84e03db6815625a0a8f8dfe4597421284ad28f4425dbd72f529b236fea6b9"
1616
}
1717
},
1818
"package://pkg.pkl-lang.org/pkl-pantry/com.github.dependabot@1": {

0 commit comments

Comments
 (0)