Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 6b5e1df

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents dcd9692 + d025bf0 commit 6b5e1df

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: Make gradlew executable
6464
run: chmod +x ./gradlew
6565
- name: Gradle Publish Snapshot
66-
if: env.BINTRAY_USER != 'SKIP_BINTRAY_PUBLISH'
66+
if: env.BINTRAY_USER != 'SKIP_BINTRAY_PUBLISH' && env.BINTRAY_USER != null
6767
env:
6868
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
6969
BINTRAY_PASS: ${{ secrets.BINTRAY_PASSWORD }}
@@ -81,13 +81,13 @@ jobs:
8181
with:
8282
java-version: 11
8383
- name: Cache SonarCloud packages
84-
uses: actions/cache@v1
84+
uses: actions/cache@v2
8585
with:
8686
path: ~/.sonar/cache
8787
key: ${{ runner.os }}-sonar
8888
restore-keys: ${{ runner.os }}-sonar
8989
- name: Cache Gradle packages
90-
uses: actions/cache@v1
90+
uses: actions/cache@v2
9191
with:
9292
path: ~/.gradle/caches
9393
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
@@ -96,4 +96,5 @@ jobs:
9696
env:
9797
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
9898
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
99+
if: env.SONAR_TOKEN != null
99100
run: ./gradlew build jacocoTestReport sonarqube --info

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ jobs:
6565
java-version: 11
6666
- name: Cache SonarCloud packages
6767
if: env.SONAR_TOKEN != null
68-
uses: actions/cache@v1
68+
uses: actions/cache@v2
6969
with:
7070
path: ~/.sonar/cache
7171
key: ${{ runner.os }}-sonar
7272
restore-keys: ${{ runner.os }}-sonar
7373
- name: Cache Gradle packages
7474
if: env.SONAR_TOKEN != null
75-
uses: actions/cache@v1
75+
uses: actions/cache@v2
7676
with:
7777
path: ~/.gradle/caches
7878
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

example-graphql-subscription/src/main/resources/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
4444
rel="stylesheet">
4545

46-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
46+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.js"></script>
4747
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.js"></script>
4848
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
4949

example-spring-common/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies {
2424
implementation(project(":graphiql-spring-boot-starter"))
2525

2626
implementation "com.embedler.moon.graphql:spring-graphql-common:2.1.0-2016-05-22T16-50-32"
27-
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.3'
27+
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.4'
2828

2929
implementation("org.springframework.boot:spring-boot-starter-web")
3030
implementation("org.springframework.boot:spring-boot-starter-actuator")

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ LIB_GRAPHQL_JAVA_VER=16.2
3535
LIB_EXTENDED_SCALARS_VERSION=16.0.1
3636
LIB_SPRING_BOOT_VER=2.4.5
3737
LIB_GRAPHQL_SERVLET_VER=11.1.0
38-
LIB_GRAPHQL_JAVA_TOOLS_VER=11.0.0
38+
LIB_GRAPHQL_JAVA_TOOLS_VER=11.0.1
3939
LIB_GRAPHQL_ANNOTATIONS_VER=8.3
4040
LIB_REFLECTIONS_VER=0.9.11
41-
LIB_APACHE_COMMONS_TEXT=1.8
41+
LIB_APACHE_COMMONS_TEXT=1.9
4242
LIB_JSOUP_VER=1.13.1
4343
### Gradle Plugins
4444
LIB_BINTRAY_PLUGIN_VER=1.8.5

0 commit comments

Comments
 (0)