Skip to content

Commit 3642617

Browse files
committed
Update dependabot
1 parent f1b7eff commit 3642617

File tree

11 files changed

+58
-23
lines changed

11 files changed

+58
-23
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
version: 2
22
updates:
33
- package-ecosystem: maven
4-
directory: /
4+
directories:
5+
- "/chapter2/quarkus-rest-services"
6+
- "/chapter3/quarkus-aws-lambda-http"
7+
- "/chapter3/quarkus-aws-requeststreamhandler"
8+
- "/chapter3/quarkus-azure-functions-http"
9+
- "/chapter3/quarkus-google-cloud-functions-cloud-events"
10+
- "/chapter3/quarkus-google-cloud-functions-http"
11+
- "/chapter4/knative-quarkus-function-ce"
12+
- "/chapter4/knative-quarkus-function-http"
13+
- "/chapter4/quarkus-funqy-aws"
14+
- "/chapter4/quarkus-funqy-azure"
15+
- "/chapter4/quarkus-funqy-gcp-cloud-events"
16+
- "/chapter4/quarkus-funqy-gcp-http"
17+
- "/chapter4/quarkus-funqy-standalone"
518
open-pull-requests-limit: 20
619
schedule:
720
interval: daily

.github/workflows/build-test-projects.yml

Lines changed: 44 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,62 @@ on:
44
push:
55
branches: [ main ]
66
paths-ignore:
7-
- '.github/dependabot.yml'
8-
- '*.md'
7+
- '**/*.md'
8+
- '.github/**/*.yml'
9+
- '.gitignore'
910
pull_request:
1011
branches: [ main ]
1112
paths-ignore:
12-
- '.github/dependabot.yml'
13-
- '*.md'
13+
- '**/*.md'
14+
- '.github/**/*.yml'
15+
- '.gitignore'
1416

1517
jobs:
16-
build-test:
18+
build-test-java17:
19+
runs-on: ubuntu-latest
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
java:
24+
- '17'
25+
project:
26+
- 'quarkus-aws-requeststreamhandler'
27+
- 'quarkus-azure-functions-http'
28+
- 'quarkus-funqy-azure'
29+
name: "build-test-${{ matrix.project }}-${{ matrix.java }}"
30+
steps:
31+
- uses: actions/checkout@v4
32+
33+
- name: Set up Java
34+
uses: actions/setup-java@v4
35+
with:
36+
java-version: ${{ matrix.java }}
37+
distribution: temurin
38+
cache: maven
39+
40+
- name: Build
41+
working-directory: ${{ matrix.project }}
42+
run: ./mvnw -B clean verify -Dquarkus.http.test-port=8081 -Dmaven.compiler.release=${{ matrix.java }}
43+
44+
build-test-java21:
1745
runs-on: ubuntu-latest
1846
strategy:
1947
fail-fast: false
2048
matrix:
2149
java:
2250
- '21'
2351
project:
24-
- 'chapter2/quarkus-rest-services'
25-
- 'chapter3/quarkus-aws-lambda-http'
26-
- 'chapter3/quarkus-aws-requeststreamhandler'
27-
- 'chapter3/quarkus-azure-functions-http'
28-
- 'chapter3/quarkus-google-cloud-functions-cloud-events'
29-
- 'chapter3/quarkus-google-cloud-functions-http'
30-
- 'chapter4/knative-quarkus-function-ce'
31-
- 'chapter4/knative-quarkus-function-http'
32-
- 'chapter4/knative-springboot'
33-
- 'chapter4/quarkus-funqy-aws'
34-
- 'chapter4/quarkus-funqy-azure'
35-
- 'chapter4/quarkus-funqy-gcp-cloud-events'
36-
- 'chapter4/quarkus-funqy-gcp-http'
37-
- 'chapter4/quarkus-funqy-standalone'
38-
name: "java${{ matrix.java }}-${{ matrix.project }}"
52+
- 'quarkus-rest-services'
53+
- 'quarkus-aws-lambda-http'
54+
- 'quarkus-google-cloud-functions-cloud-events'
55+
- 'quarkus-google-cloud-functions-http'
56+
- 'knative-quarkus-function-ce'
57+
- 'knative-quarkus-function-http'
58+
- 'quarkus-funqy-aws'
59+
- 'quarkus-funqy-gcp-cloud-events'
60+
- 'quarkus-funqy-gcp-http'
61+
- 'quarkus-funqy-standalone'
62+
name: "build-test-${{ matrix.project }}-${{ matrix.java }}"
3963
steps:
4064
- uses: actions/checkout@v4
4165

chapter3/quarkus-aws-requeststreamhandler/target/classes/application.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

chapter3/quarkus-aws-requeststreamhandler/target/test-classes/application.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.
Binary file not shown.

0 commit comments

Comments
 (0)