Skip to content

Commit 7e250c9

Browse files
committed
Update dependabot
1 parent c78140f commit 7e250c9

File tree

13 files changed

+79
-130
lines changed

13 files changed

+79
-130
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,12 @@
11
version: 2
22
updates:
3+
# Main branch
34
- package-ecosystem: maven
4-
directory: /
5-
# directories:
6-
# - "/chapter2/quarkus-rest-services"
7-
# - "/chapter3/quarkus-aws-lambda-http"
8-
# - "/chapter3/quarkus-aws-requeststreamhandler"
9-
# - "/chapter3/quarkus-azure-functions-http"
10-
# - "/chapter3/quarkus-google-cloud-functions-cloud-events"
11-
# - "/chapter3/quarkus-google-cloud-functions-http"
12-
# - "/chapter4/knative-quarkus-function-ce"
13-
# - "/chapter4/knative-quarkus-function-http"
14-
# - "/chapter4/quarkus-funqy-aws"
15-
# - "/chapter4/quarkus-funqy-azure"
16-
# - "/chapter4/quarkus-funqy-gcp-cloud-events"
17-
# - "/chapter4/quarkus-funqy-gcp-http"
18-
# - "/chapter4/quarkus-funqy-standalone"
19-
open-pull-requests-limit: 20
5+
directory: "/"
206
schedule:
217
interval: daily
22-
ignore:
23-
- dependency-name: org.apache.maven.plugins:maven-compiler-plugin
24-
labels:
25-
- "version-upgrade"
26-
27-
# Maintain dependencies for GitHub Actions
28-
- package-ecosystem: github-actions
29-
directory: /
308
open-pull-requests-limit: 10
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
3111
schedule:
32-
interval: daily
33-
labels:
34-
- "version-upgrade"
12+
interval: "weekly"

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

Lines changed: 0 additions & 75 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
concurrency:
12+
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
13+
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
14+
15+
defaults:
16+
run:
17+
shell: bash
18+
19+
jobs:
20+
build-java21:
21+
runs-on: ubuntu-latest
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
app:
26+
- 'chapter2/quarkus-rest-services'
27+
- 'chapter3/quarkus-aws-lambda-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/quarkus-funqy-aws'
33+
- 'chapter4/quarkus-funqy-gcp-cloud-events'
34+
- 'chapter4/quarkus-funqy-gcp-http'
35+
- 'chapter4/quarkus-funqy-standalone'
36+
37+
name: "Build ${{ matrix.app }}"
38+
steps:
39+
- uses: actions/checkout@v4
40+
- name: Setup Java
41+
uses: actions/setup-java@v4
42+
with:
43+
java-version: 21
44+
distribution: temurin
45+
cache: maven
46+
- name: Maven Build for ${{ matrix.app }}
47+
working-directory: ${{ matrix.app }}
48+
run: ./mvnw -B clean verify -Dquarkus.http.host=0.0.0.0 -DskipITs=false
49+
50+
51+
build-java17:
52+
runs-on: ubuntu-latest
53+
strategy:
54+
fail-fast: false
55+
matrix:
56+
app:
57+
- 'chapter3/quarkus-aws-requeststreamhandler'
58+
- 'chapter3/quarkus-azure-functions-http'
59+
- 'chapter4/quarkus-funqy-azure'
60+
61+
name: "Build ${{ matrix.app }}"
62+
steps:
63+
- uses: actions/checkout@v4
64+
- name: Setup Java
65+
uses: actions/setup-java@v4
66+
with:
67+
java-version: 17
68+
distribution: temurin
69+
cache: maven
70+
- name: Maven Build for ${{ matrix.app }}
71+
working-directory: ${{ matrix.app }}
72+
run: ./mvnw -B clean verify -Dquarkus.http.host=0.0.0.0 -DskipITs=false

.github/workflows/dependabot-automerge.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
quarkus.lambda.handler=stream
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)