Skip to content

Commit 1339f01

Browse files
committed
Refresh GitHub Actions configuration
1 parent 61498b3 commit 1339f01

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

.github/actions/prepare-gradle-build/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ runs:
4242
echo 'systemProp.user.name=spring-builds+github' >> $HOME/.gradle/gradle.properties
4343
echo 'systemProp.org.gradle.internal.launcher.welcomeMessageEnabled=false' >> $HOME/.gradle/gradle.properties
4444
echo 'org.gradle.daemon=false' >> $HOME/.gradle/gradle.properties
45-
echo 'org.gradle.daemon=4' >> $HOME/.gradle/gradle.properties
4645
- name: Configure Toolchain Properties
4746
if: ${{ inputs.java-toolchain == 'true' }}
4847
shell: bash

.github/workflows/build-and-deploy-snapshot.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: Build and Deploy Snapshot
22
on:
33
push:
44
branches:
5-
- main
5+
- 'main'
6+
permissions:
7+
contents: read
68
concurrency:
79
group: ${{ github.workflow }}-${{ github.ref }}
810
jobs:

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: CI
22
on:
33
push:
44
branches:
5-
- main
5+
- 'main'
6+
permissions:
7+
contents: read
68
concurrency:
79
group: ${{ github.workflow }}-${{ github.ref }}
810
jobs:

.github/workflows/release-milestone.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
uses: ./.github/actions/build
2020
with:
2121
develocity-access-key: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
22-
opensource-repository-password: ${{ secrets.ARTIFACTORY_PASSWORD }}
23-
opensource-repository-username: ${{ secrets.ARTIFACTORY_USERNAME }}
2422
publish: true
2523
- name: Stage Release
2624
uses: spring-io/artifactory-deploy-action@926d7f7cc810569395346bf3a4d91b380b3e355b # v0.0.4

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
uses: ./.github/actions/build
1919
with:
2020
develocity-access-key: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
21-
opensource-repository-password: ${{ secrets.ARTIFACTORY_PASSWORD }}
22-
opensource-repository-username: ${{ secrets.ARTIFACTORY_USERNAME }}
2321
publish: true
2422
- name: Stage Release
2523
uses: spring-io/artifactory-deploy-action@926d7f7cc810569395346bf3a4d91b380b3e355b # v0.0.4
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Run CodeQL Analysis"
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: '45 2 * * 1'
8+
permissions: read-all
9+
jobs:
10+
run-analysis:
11+
permissions:
12+
actions: read
13+
contents: read
14+
security-events: write
15+
uses: spring-io/github-actions/.github/workflows/codeql-analysis.yml@6e66995f7d29de1e4ff76e4f0def7a10163fe910

0 commit comments

Comments
 (0)