Skip to content

Commit c2c36cb

Browse files
Updates all dependencies (#239)
Signed-off-by: Adrian Cole <adrian@tetrate.io>
1 parent cefa3d8 commit c2c36cb

File tree

31 files changed

+207
-234
lines changed

31 files changed

+207
-234
lines changed

.github/workflows/create_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ jobs:
1313
runs-on: ubuntu-24.04 # newest available distribution, aka noble
1414
steps:
1515
- name: Checkout Repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
# Prevent use of implicit GitHub Actions read-only GITHUB_TOKEN
1919
# because maven-release-plugin pushes commits to master.
2020
token: ${{ secrets.GH_TOKEN }}
2121
- name: Setup java
22-
uses: actions/setup-java@v4
22+
uses: actions/setup-java@v5
2323
with:
2424
distribution: 'zulu' # zulu as it supports a wide version range
2525
java-version: '17' # until Spark 4 per SPARK-43831
2626
- name: Cache local Maven repository
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: ~/.m2/repository
3030
key: ${{ runner.os }}-jdk-17-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
runs-on: ubuntu-24.04 # newest available distribution, aka noble
1919
steps:
2020
- name: Checkout Repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
- name: Setup java
23-
uses: actions/setup-java@v4
23+
uses: actions/setup-java@v5
2424
with:
2525
distribution: 'zulu' # zulu as it supports a wide version range
2626
java-version: '17' # until Spark 4 per SPARK-43831
2727
- name: Cache local Maven repository
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: ~/.m2/repository
3131
key: ${{ runner.os }}-jdk-17-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/docker_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04 # newest available distribution, aka noble
1414
steps:
1515
- name: Checkout Repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
# Don't attempt to cache Docker. Sensitive information can be stolen
1818
# via forks, and login session ends up in ~/.docker. This is ok because
1919
# we publish DOCKER_PARENT_IMAGE to ghcr.io, hence local to the runner.

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: "!contains(github.event.head_commit.message, 'maven-release-plugin')"
3030
steps:
3131
- name: Checkout Repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
- name: Lint
3434
run: |
3535
build-bin/configure_lint

.github/workflows/security.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
if: "!contains(github.event.head_commit.message, 'maven-release-plugin')"
2929
steps:
3030
- name: Checkout Repository
31-
uses: actions/checkout@v4
32-
- uses: actions/cache@v4
31+
uses: actions/checkout@v6
32+
- uses: actions/cache@v5
3333
name: Cache Trivy Database
3434
with:
3535
path: .trivy
3636
key: ${{ runner.os }}-trivy
3737
restore-keys: ${{ runner.os }}-trivy
3838
- name: Run Trivy vulnerability and secret scanner
39-
uses: aquasecurity/trivy-action@master
39+
uses: aquasecurity/trivy-action@v0.35.0
4040
id: trivy
4141
with:
4242
scan-type: 'fs'

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
- java_version: 21 # Most recent LTS
3636
steps:
3737
- name: Checkout Repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
- name: Setup java
40-
uses: actions/setup-java@v4
40+
uses: actions/setup-java@v5
4141
with:
4242
distribution: 'zulu' # zulu as it supports a wide version range
4343
java-version: '17' # until Spark 4 per SPARK-43831
4444
- name: Cache local Maven repository
45-
uses: actions/cache@v4
45+
uses: actions/cache@v5
4646
with:
4747
path: ~/.m2/repository
4848
# yamllint disable-line rule:line-length
@@ -63,9 +63,9 @@ jobs:
6363
- name: zipkin-dependencies-cassandra3
6464
module: zipkin-dependencies-cassandra3
6565
groups: docker
66-
- name: zipkin-dependencies-elasticsearch-v7
66+
- name: zipkin-dependencies-elasticsearch-v9
6767
module: zipkin-dependencies-elasticsearch
68-
groups: docker,elasticsearch7
68+
groups: docker,elasticsearch9
6969
- name: zipkin-dependencies-elasticsearch-v8
7070
module: zipkin-dependencies-elasticsearch
7171
groups: docker,elasticsearch8
@@ -77,14 +77,14 @@ jobs:
7777
groups: docker
7878
steps:
7979
- name: Checkout Repository
80-
uses: actions/checkout@v4
80+
uses: actions/checkout@v6
8181
- name: Setup java
82-
uses: actions/setup-java@v4
82+
uses: actions/setup-java@v5
8383
with:
8484
distribution: 'zulu' # zulu as it supports a wide version range
8585
java-version: '17' # until Spark 4 per SPARK-43831
8686
- name: Cache local Maven repository
87-
uses: actions/cache@v4
87+
uses: actions/cache@v5
8888
with:
8989
path: ~/.m2/repository
9090
# yamllint disable-line rule:line-length

.github/workflows/test_readme.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
# skip commits made by the release plugin
2929
steps:
3030
- name: Checkout Repository
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
- name: Setup java
33-
uses: actions/setup-java@v4
33+
uses: actions/setup-java@v5
3434
with:
3535
distribution: 'zulu' # zulu as it supports a wide version range
3636
java-version: '17' # until Spark 4 per SPARK-43831
3737
- name: Cache local Maven repository
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.m2/repository
4141
key: ${{ runner.os }}-jdk-17-maven-${{ hashFiles('**/pom.xml') }}

.mvn/wrapper/maven-wrapper.jar

65 Bytes
Binary file not shown.
Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,4 @@
1-
# Licensed to the Apache Software Foundation (ASF) under one
2-
# or more contributor license agreements. See the NOTICE file
3-
# distributed with this work for additional information
4-
# regarding copyright ownership. The ASF licenses this file
5-
# to you under the Apache License, Version 2.0 (the
6-
# "License"); you may not use this file except in compliance
7-
# with the License. You may obtain a copy of the License at
8-
#
9-
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
11-
# Unless required by applicable law or agreed to in writing,
12-
# software distributed under the License is distributed on an
13-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14-
# KIND, either express or implied. See the License for the
15-
# specific language governing permissions and limitations
16-
# under the License.
17-
wrapperVersion=3.3.2
1+
wrapperVersion=3.3.4
182
distributionType=bin
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip
20-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.14/apache-maven-3.9.14-bin.zip
4+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.4/maven-wrapper-3.3.4.jar

build-bin/configure_lint

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/bin/sh -ue
22

33
# Attempt to install markdown-link-check if absent
4-
markdown-link-check -V || npm install -g markdown-link-check
4+
# Pinned until https://github.com/tcort/markdown-link-check/issues/369
5+
markdown-link-check -V || npm install -g markdown-link-check@3.12.2
56

67
# Attempt to install yamllint if absent
78
yamllint -v || pip install --user yamllint

0 commit comments

Comments
 (0)