This repository was archived by the owner on Dec 19, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-9
lines changed
example-graphql-subscription/src/main/resources/public Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 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') }}
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
Original file line number Diff line number Diff 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') }}
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ LIB_GRAPHQL_JAVA_VER=16.2
3535LIB_EXTENDED_SCALARS_VERSION =16.0.1
3636LIB_SPRING_BOOT_VER =2.4.5
3737LIB_GRAPHQL_SERVLET_VER =11.1.0
38- LIB_GRAPHQL_JAVA_TOOLS_VER =11.0.0
38+ LIB_GRAPHQL_JAVA_TOOLS_VER =11.0.1
3939LIB_GRAPHQL_ANNOTATIONS_VER =8.3
4040LIB_REFLECTIONS_VER =0.9.11
41- LIB_APACHE_COMMONS_TEXT =1.8
41+ LIB_APACHE_COMMONS_TEXT =1.9
4242LIB_JSOUP_VER =1.13.1
4343# ## Gradle Plugins
4444LIB_BINTRAY_PLUGIN_VER =1.8.5
You can’t perform that action at this time.
0 commit comments