Skip to content

Commit 97bba01

Browse files
Merge branch 'master' into jjwt-jackson/0.12.0
2 parents 1628a4e + b626286 commit 97bba01

File tree

71 files changed

+1333
-57
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1333
-57
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
* @oracle/graalvm-reachability-maintainer
2-
tests/tck-build-logic/src/main/resources/allowed-docker-images/* @matneu
2+
tests/tck-build-logic/src/main/resources/allowed-docker-images/* @matneu @matteoldani
33
library-and-framework-list.json @fniephaus

.github/workflows/check-new-library-versions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: github.repository == 'oracle/graalvm-reachability-metadata'
2222
name: "📋 Get list of all supported libraries with newer versions"
2323
permissions: write-all
24-
runs-on: "ubuntu-20.04"
24+
runs-on: "ubuntu-22.04"
2525
timeout-minutes: 5
2626
env:
2727
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -124,7 +124,7 @@ jobs:
124124

125125
process-results:
126126
name: "🧪 Process results"
127-
runs-on: "ubuntu-20.04"
127+
runs-on: "ubuntu-22.04"
128128
if: ${{ always() }}
129129
needs:
130130
- get-all-libraries

.github/workflows/checkstyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
checkstyle:
1111
if: github.repository == 'oracle/graalvm-reachability-metadata'
1212
name: "📋 Check style according to checkstyle.xml"
13-
runs-on: "ubuntu-20.04"
13+
runs-on: "ubuntu-22.04"
1414
timeout-minutes: 15
1515
steps:
1616
- name: "☁️ Checkout repository"

.github/workflows/create-scheduled-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
get-changed-metadata:
1414
name: "📋 Get a list of changed metadata"
15-
runs-on: "ubuntu-20.04"
15+
runs-on: "ubuntu-22.04"
1616
timeout-minutes: 5
1717
outputs:
1818
matrix: ${{ steps.set-matrix.outputs.matrix }}
@@ -37,7 +37,7 @@ jobs:
3737
needs: get-changed-metadata
3838
if: needs.get-changed-metadata.result == 'success' && needs.get-changed-metadata.outputs.none-found != 'true'
3939
name: "🚀 Create a release"
40-
runs-on: "ubuntu-20.04"
40+
runs-on: "ubuntu-22.04"
4141
env:
4242
GH_TOKEN: ${{ github.token }}
4343
steps:
@@ -76,4 +76,4 @@ jobs:
7676
git push origin ${{ env.CURRENT_RELEASE_TAG }}
7777
- name: "📝 Publish a release"
7878
run: |
79-
gh release create ${{ env.CURRENT_RELEASE_TAG }} build/graalvm-reachability-metadata-*.zip --generate-notes --notes-start-tag ${{ env.PREVIOUS_RELEASE_TAG }}
79+
gh release create ${{ env.CURRENT_RELEASE_TAG }} build/graalvm-reachability-metadata-*.zip --generate-notes --notes-start-tag ${{ env.PREVIOUS_RELEASE_TAG }}

.github/workflows/library-and-framework-list-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
validate-library-and-framework-list-json:
1010
if: github.repository == 'oracle/graalvm-reachability-metadata'
1111
name: "📋 Validate the JSON file"
12-
runs-on: "ubuntu-20.04"
12+
runs-on: "ubuntu-22.04"
1313
timeout-minutes: 5
1414
steps:
1515
- name: "☁️ Checkout repository"

.github/workflows/scan-docker-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
scan-images:
1414
name: "🔎 Scan docker images"
15-
runs-on: "ubuntu-20.04"
15+
runs-on: "ubuntu-22.04"
1616
steps:
1717
- name: "☁️ Checkout repository"
1818
uses: actions/checkout@v4

.github/workflows/test-all-metadata.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
get-all-metadata:
1818
if: github.repository == 'oracle/graalvm-reachability-metadata'
1919
name: "📋 Get list of all supported libraries"
20-
runs-on: "ubuntu-20.04"
20+
runs-on: "ubuntu-22.04"
2121
timeout-minutes: 5
2222
outputs:
2323
matrix: ${{ steps.set-matrix.outputs.matrix }}
@@ -78,7 +78,7 @@ jobs:
7878
7979
all-metadata-passed:
8080
name: "🧪 All metadata tests have passed"
81-
runs-on: "ubuntu-20.04"
81+
runs-on: "ubuntu-22.04"
8282
timeout-minutes: 1
8383
if: ${{ always() }} && github.repository == 'oracle/graalvm-reachability-metadata'
8484
needs: test-all-metadata

.github/workflows/test-changed-metadata.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
get-changed-metadata:
1717
if: github.repository == 'oracle/graalvm-reachability-metadata'
1818
name: "📋 Get a list of all changed libraries"
19-
runs-on: "ubuntu-20.04"
19+
runs-on: "ubuntu-22.04"
2020
timeout-minutes: 5
2121
outputs:
2222
matrix: ${{ steps.set-matrix.outputs.matrix }}
@@ -84,7 +84,7 @@ jobs:
8484
8585
all-metadata-passed:
8686
name: "🧪 All metadata tests have passed"
87-
runs-on: "ubuntu-20.04"
87+
runs-on: "ubuntu-22.04"
8888
timeout-minutes: 1
8989
if: ${{ always() }} && github.repository == 'oracle/graalvm-reachability-metadata'
9090
needs: test-changed-metadata

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
# Project versions
3-
nativeBuildTools = "0.9.28"
3+
nativeBuildTools = "0.10.6"
44

55
# External dependencies
66
junitPlatform = "1.9.2"

metadata/io.grpc/grpc-core/index.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"1.69.0",
66
"1.69.1",
77
"1.70.0",
8-
"1.71.0"
8+
"1.71.0",
9+
"1.72.0"
910
],
1011
"latest" : true,
1112
"override" : true,

0 commit comments

Comments
 (0)