Skip to content

Commit

Permalink
build scan
Browse files Browse the repository at this point in the history
  • Loading branch information
jianglai committed Mar 9, 2024
1 parent 00c1b68 commit 945cdee
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: "CodeQL"

#on:
# push:
# branches: [ 'master' ]
# pull_request:
# # The branches below must be a subset of the branches above
# branches: [ 'master' ]
# schedule:
# - cron: '24 4 * * 2'
# push:
# branches: [ 'master' ]
# pull_request:
# # The branches below must be a subset of the branches above
# branches: [ 'master' ]
# schedule:
# - cron: '24 4 * * 2'
on: [push]

jobs:
Expand Down Expand Up @@ -51,6 +51,10 @@ jobs:
# Build with Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
build-scan-publish: true
build-scan-terms-of-service-url: "https://gradle.com/terms-of-service"
build-scan-terms-of-service-agree: "yes"
- name: Execute Gradle build
run: ./gradlew build -x test -x jIFC

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/dependency-submission.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Dependency Submission

on: [ push ]
on:
push:
branches: [ 'master' ]
schedule:
- cron: '24 3 1 * *'

permissions:
contents: write
Expand All @@ -18,8 +22,4 @@ jobs:
distribution: 'temurin'
java-version: '21'
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v3
with:
build-scan-publish: true
build-scan-terms-of-service-url: "https://gradle.com/terms-of-service"
build-scan-terms-of-service-agree: "yes"
uses: gradle/actions/dependency-submission@v3

0 comments on commit 945cdee

Please sign in to comment.