Skip to content

Commit 12573d4

Browse files
Update all dependencies
| datasource | package | from | to | | -------------- | --------------------------------------------------------- | ------ | ----- | | github-tags | actions/checkout | v4 | v5 | | github-tags | actions/setup-java | v4 | v5 | | github-tags | actions/upload-artifact | v4 | v5 | | gradle-version | gradle | 8.12.1 | 9.2.0 | | docker | mcr.microsoft.com/devcontainers/java | 1 | 3 | | maven | com.diffplug.spotless:com.diffplug.spotless.gradle.plugin | 7.0.2 | 8.0.0 |
1 parent ebc3a97 commit 12573d4

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Java",
3-
"image": "mcr.microsoft.com/devcontainers/java:1-21",
3+
"image": "mcr.microsoft.com/devcontainers/java:3-21",
44
"features": {
55
"ghcr.io/devcontainers/features/java:1": {
66
"version": "none",

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515

1616
steps:
1717
- name: Checkout the repo
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121

2222
- name: Set up Java
23-
uses: actions/setup-java@v4
23+
uses: actions/setup-java@v5
2424
with:
2525
distribution: 'zulu'
2626
java-version: 11

.github/workflows/githubpages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
timeout-minutes: 20
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
timeout-minutes: 30
2222
runs-on: macos-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727

2828
- name: Set up Java
29-
uses: actions/setup-java@v4
29+
uses: actions/setup-java@v5
3030
with:
3131
distribution: 'zulu'
3232
java-version: 11
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Upload reports
4040
if: failure()
41-
uses: actions/upload-artifact@v4
41+
uses: actions/upload-artifact@v5
4242
with:
4343
name: 'reports-${{ matrix.os }}'
4444
path: '**/build/reports/**'

.github/workflows/pull_request.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
with:
1212
fetch-depth: 0
1313

1414
- name: Set up Java
15-
uses: actions/setup-java@v4
15+
uses: actions/setup-java@v5
1616
with:
1717
distribution: 'zulu'
1818
java-version: 11

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ kotlinx-json="1.8.0"
1010
kotlinx-knit="0.5.0"
1111
publish="0.30.0"
1212
knit="0.5.0"
13-
spotless="7.0.2"
13+
spotless="8.0.0"
1414

1515
[libraries]
1616
arrow-optics = { module = "io.arrow-kt:arrow-optics", version.ref = "arrow" }

0 commit comments

Comments
 (0)