Skip to content

Commit 284cf00

Browse files
committed
Update workflow dependencies major versions
Updated actions:checkout___major to v5 Updated actions:upload-artifact___major to v5 Updated github:codeql-action__analyze___major to v4 Updated github:codeql-action__init___major to v4 Updated Kotlin compiler for workflow to 2.2.21
1 parent c035dd4 commit 284cf00

File tree

10 files changed

+40
-18
lines changed

10 files changed

+40
-18
lines changed

.github/renovate.json5

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,28 @@
4444
matchPackageNames: ["/^org.spockframework:spock-/"],
4545
matchCurrentVersion: "/-groovy-5\\.0$/",
4646
allowedVersions: "/-groovy-5\\.0$/"
47+
},
48+
{
49+
groupName: "actions-checkout",
50+
matchPackageNames: [
51+
"actions/checkout",
52+
"actions:checkout___major"
53+
]
54+
},
55+
{
56+
groupName: "actions-upload-artifact",
57+
matchPackageNames: [
58+
"actions/upload-artifact",
59+
"actions:upload-artifact___major"
60+
]
61+
},
62+
{
63+
groupName: "actions-codeql-action",
64+
matchPackageNames: [
65+
"github/codeql-action",
66+
"github:codeql-action__analyze___major",
67+
"github:codeql-action__analyze___major"
68+
]
4769
}
4870
]
4971
}

.github/workflows/branches-and-prs.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.5.0")
2424

2525
@file:Repository("https://bindings.krzeminski.it/")
26-
@file:DependsOn("actions:checkout___major:[v4,v5-alpha)")
26+
@file:DependsOn("actions:checkout___major:[v5,v6-alpha)")
2727
@file:DependsOn("codecov:codecov-action___major:[v5,v6-alpha)")
2828

2929
import io.github.typesafegithub.workflows.actions.actions.Checkout

.github/workflows/branches-and-prs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- id: 'step-0'
3737
name: 'Checkout Repository'
38-
uses: 'actions/checkout@v4'
38+
uses: 'actions/checkout@v5'
3939
- id: 'step-1'
4040
name: 'Regenerate all Workflow YAMLs'
4141
run: 'find .github/workflows -mindepth 1 -maxdepth 1 -name ''*.main.kts'' -exec {} \;'
@@ -106,7 +106,7 @@ jobs:
106106
steps:
107107
- id: 'step-0'
108108
name: 'Checkout Repository'
109-
uses: 'actions/checkout@v4'
109+
uses: 'actions/checkout@v5'
110110
with:
111111
fetch-depth: '2'
112112
- id: 'step-1'

.github/workflows/codeql-analysis.main.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.5.0")
2424

2525
@file:Repository("https://bindings.krzeminski.it/")
26-
@file:DependsOn("actions:checkout___major:[v4,v5-alpha)")
27-
@file:DependsOn("github:codeql-action__analyze___major:[v3,v4-alpha)")
28-
@file:DependsOn("github:codeql-action__init___major:[v3,v4-alpha)")
26+
@file:DependsOn("actions:checkout___major:[v5,v6-alpha)")
27+
@file:DependsOn("github:codeql-action__analyze___major:[v4,v5-alpha)")
28+
@file:DependsOn("github:codeql-action__init___major:[v4,v5-alpha)")
2929

3030
import io.github.typesafegithub.workflows.actions.actions.Checkout
3131
import io.github.typesafegithub.workflows.actions.github.CodeqlActionAnalyze

.github/workflows/codeql-analysis.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ jobs:
4444
steps:
4545
- id: 'step-0'
4646
name: 'Checkout Repository'
47-
uses: 'actions/checkout@v4'
47+
uses: 'actions/checkout@v5'
4848
- id: 'step-1'
4949
name: 'Set up JDKs'
5050
uses: './.github/actions/setup-build-env'
5151
- id: 'step-2'
5252
name: 'Initialize CodeQL'
53-
uses: 'github/codeql-action/init@v3'
53+
uses: 'github/codeql-action/init@v4'
5454
- id: 'step-3'
5555
name: 'Build Spock Classes'
5656
run: './gradlew --stacktrace --no-build-cache testClasses "-Dvariant=${{ matrix.variant }}" "-DjavaVersion=${{ matrix.variant == ''5.0'' && ''11'' || ''8'' }}"'
5757
- id: 'step-4'
5858
name: 'Perform CodeQL Analysis'
59-
uses: 'github/codeql-action/analyze@v3'
59+
uses: 'github/codeql-action/analyze@v4'

.github/workflows/docs-pr.main.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.5.0")
2424

2525
@file:Repository("https://bindings.krzeminski.it/")
26-
@file:DependsOn("actions:checkout___major:[v4,v5-alpha)")
27-
@file:DependsOn("actions:upload-artifact___major:[v4,v5-alpha)")
26+
@file:DependsOn("actions:checkout___major:[v5,v6-alpha)")
27+
@file:DependsOn("actions:upload-artifact___major:[v5,v6-alpha)")
2828

2929
import io.github.typesafegithub.workflows.actions.actions.Checkout
3030
import io.github.typesafegithub.workflows.actions.actions.Checkout.FetchDepth

.github/workflows/docs-pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- id: 'step-0'
3737
name: 'Checkout Repository'
38-
uses: 'actions/checkout@v4'
38+
uses: 'actions/checkout@v5'
3939
with:
4040
fetch-depth: '1'
4141
- id: 'step-1'
@@ -51,7 +51,7 @@ jobs:
5151
run: './gradlew --stacktrace asciidoctor javadoc "-Dvariant=5.0" "-DjavaVersion=25"'
5252
- id: 'step-4'
5353
name: 'Archive and upload docs'
54-
uses: 'actions/upload-artifact@v4'
54+
uses: 'actions/upload-artifact@v5'
5555
with:
5656
name: 'docs'
5757
path: |-

.github/workflows/release.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.5.0")
2424

2525
@file:Repository("https://bindings.krzeminski.it/")
26-
@file:DependsOn("actions:checkout___major:[v4,v5-alpha)")
26+
@file:DependsOn("actions:checkout___major:[v5,v6-alpha)")
2727
@file:DependsOn("codecov:codecov-action___major:[v5,v6-alpha)")
2828

2929
import io.github.typesafegithub.workflows.actions.actions.Checkout

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
steps:
8787
- id: 'step-0'
8888
name: 'Checkout Repository'
89-
uses: 'actions/checkout@v4'
89+
uses: 'actions/checkout@v5'
9090
with:
9191
fetch-depth: '2'
9292
- id: 'step-1'
@@ -127,7 +127,7 @@ jobs:
127127
steps:
128128
- id: 'step-0'
129129
name: 'Checkout Repository'
130-
uses: 'actions/checkout@v4'
130+
uses: 'actions/checkout@v5'
131131
- id: 'step-1'
132132
name: 'Set up JDKs'
133133
uses: './.github/actions/setup-build-env'
@@ -159,7 +159,7 @@ jobs:
159159
steps:
160160
- id: 'step-0'
161161
name: 'Checkout Repository'
162-
uses: 'actions/checkout@v4'
162+
uses: 'actions/checkout@v5'
163163
- id: 'step-1'
164164
name: 'Set up JDKs'
165165
uses: './.github/actions/setup-build-env'

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ junitPlatformVersionRange = "[1.12,7)"
1111
asm = '9.9'
1212
mockito4 = '4.11.0'
1313
mockito5 = '5.20.0'
14-
workflows-kotlin = "2.1.21"
14+
workflows-kotlin = "2.2.21"
1515

1616
[libraries]
1717
jetbrains-annotations = "org.jetbrains:annotations:26.0.2-1"

0 commit comments

Comments
 (0)