Skip to content

Commit b429e33

Browse files
committed
resolved conflicts
2 parents 6078a13 + fb2878c commit b429e33

11,391 files changed

Lines changed: 139161 additions & 56931 deletions

File tree

Some content is hidden

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

.github/workflows/docker-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
java-version: 11
2222
distribution: 'zulu'
2323
- name: Cache Maven packages
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: ~/.m2
2727
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/gradle-plugin-tests.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ jobs:
1919
with:
2020
java-version: 11
2121
distribution: 'temurin'
22+
cache: gradle
2223
- name: Cache maven dependencies
23-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2425
env:
2526
cache-name: cache-maven-repository
2627
with:

.github/workflows/gradle-test.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,17 @@ jobs:
3737
with:
3838
distribution: 'temurin'
3939
java-version: 11
40+
cache: gradle
4041
# Cache Gradle Dependencies
4142
- name: Setup Gradle Dependencies Cache
42-
uses: actions/cache@v4
43+
uses: actions/cache@v5
4344
with:
4445
path: ~/.gradle/caches
4546
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}
4647

4748
# Cache Gradle Wrapper
4849
- name: Setup Gradle Wrapper Cache
49-
uses: actions/cache@v4
50+
uses: actions/cache@v5
5051
with:
5152
path: ~/.gradle/wrapper
5253
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

.github/workflows/linux.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,16 @@ jobs:
2727
with:
2828
distribution: 'temurin'
2929
java-version: ${{ matrix.java }}
30+
cache: gradle
3031

31-
- uses: actions/cache@v4
32+
- uses: actions/cache@v5
3233
with:
3334
path: ~/.m2/repository
3435
key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml', 'modules/**/pom.xml') }}
3536
restore-keys: |
3637
${{ runner.os }}-maven-
3738
38-
- uses: actions/cache@v4
39+
- uses: actions/cache@v5
3940
with:
4041
path: |
4142
~/.gradle/caches
@@ -61,7 +62,7 @@ jobs:
6162
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
6263

6364
- name: Upload Maven build artifact
64-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v6
6566
if: matrix.java == '11' && matrix.os == 'ubuntu-latest'
6667
with:
6768
name: artifact
@@ -95,8 +96,9 @@ jobs:
9596
with:
9697
java-version: 11
9798
maven-version: 3.8.8
99+
cache: gradle
98100
- name: Download build artifact
99-
uses: actions/download-artifact@v5
101+
uses: actions/download-artifact@v7
100102
with:
101103
name: artifact
102104
- name: Run Ensures Script

.github/workflows/maven-plugin-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
java-version: 11
2121
distribution: 'temurin'
2222
- name: Cache maven dependencies
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
env:
2525
cache-name: cache-maven-repository
2626
with:

.github/workflows/maven-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
java-version: 11
1919
distribution: 'zulu'
2020
- name: Cache Maven packages
21-
uses: actions/cache@v4
21+
uses: actions/cache@v5
2222
with:
2323
path: ~/.m2
2424
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/openapi-generator.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ jobs:
2121
with:
2222
java-version: 11
2323
distribution: 'temurin'
24+
cache: gradle
2425
- name: Cache maven dependencies
25-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2627
env:
2728
cache-name: cache-maven-repository
2829
with:
@@ -41,7 +42,7 @@ jobs:
4142
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
4243
- run: ls -la modules/openapi-generator-cli/target
4344
- name: Upload openapi-generator-cli.jar artifact
44-
uses: actions/upload-artifact@v4
45+
uses: actions/upload-artifact@v6
4546
with:
4647
name: openapi-generator-cli.jar
4748
path: modules/openapi-generator-cli/target/openapi-generator-cli.jar
@@ -59,8 +60,9 @@ jobs:
5960
with:
6061
java-version: 11
6162
distribution: 'temurin'
63+
cache: gradle
6264
- name: Cache maven dependencies
63-
uses: actions/cache@v4
65+
uses: actions/cache@v5
6466
env:
6567
cache-name: cache-maven-repository
6668
with:
@@ -79,7 +81,7 @@ jobs:
7981
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
8082
- name: Publish unit test reports
8183
if: ${{ always() }}
82-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@v6
8385
with:
8486
name: surefire-test-results
8587
path: '**/surefire-reports/TEST-*.xml'
@@ -97,7 +99,7 @@ jobs:
9799
java-version: 11
98100
distribution: 'temurin'
99101
- name: Download openapi-generator-cli.jar artifact
100-
uses: actions/download-artifact@v5
102+
uses: actions/download-artifact@v7
101103
with:
102104
name: openapi-generator-cli.jar
103105
path: modules/openapi-generator-cli/target
@@ -136,7 +138,7 @@ jobs:
136138
java-version: 11
137139
distribution: 'temurin'
138140
- name: Download openapi-generator-cli.jar artifact
139-
uses: actions/download-artifact@v5
141+
uses: actions/download-artifact@v7
140142
with:
141143
name: openapi-generator-cli.jar
142144
path: modules/openapi-generator-cli/target

.github/workflows/samples-aspnet-fastenpoints-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- samples/server/petstore/aspnet/fastendpoints-useValidators
2727
steps:
2828
- uses: actions/checkout@v5
29-
- uses: actions/setup-dotnet@v5.0.0
29+
- uses: actions/setup-dotnet@v5.0.1
3030
with:
3131
dotnet-version: '8.0.x'
3232
- name: Build

.github/workflows/samples-clojure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
distribution: 'temurin'
3535
java-version: 11
3636
- name: Cache maven dependencies
37-
uses: actions/cache@v4
37+
uses: actions/cache@v5
3838
env:
3939
cache-name: maven-repository
4040
with:
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Samples Crystal clients
2+
3+
on:
4+
push:
5+
paths:
6+
- samples/client/petstore/crystal/**
7+
pull_request:
8+
paths:
9+
- samples/client/petstore/crystal/**
10+
jobs:
11+
build:
12+
name: Build Crystal projects
13+
runs-on: ubuntu-latest
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
sample:
18+
# clients
19+
- samples/client/petstore/crystal/
20+
services:
21+
petstore-api:
22+
image: swaggerapi/petstore
23+
ports:
24+
- 80:8080
25+
env:
26+
SWAGGER_HOST: http://petstore.swagger.io
27+
SWAGGER_BASE_PATH: /v2
28+
steps:
29+
- uses: actions/checkout@v5
30+
- name: Install Crystal
31+
uses: crystal-lang/install-crystal@v1
32+
- name: Shards Install
33+
run: shards install
34+
working-directory: ${{ matrix.sample }}
35+
- name: Run tests
36+
run: crystal spec
37+
working-directory: ${{ matrix.sample }}

0 commit comments

Comments
 (0)