Skip to content

Commit 993ffa4

Browse files
committed
Merge branch '3.5.x'
2 parents bbcb31c + 040f81a commit 993ffa4

File tree

8 files changed

+30
-1
lines changed

8 files changed

+30
-1
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- 'main'
7+
permissions:
8+
contents: read
79
concurrency:
810
group: ${{ github.workflow }}-${{ github.ref }}
911
jobs:

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
push:
44
branches:
55
- 'main'
6+
permissions:
7+
contents: read
68
jobs:
79
ci:
810
name: '${{ matrix.os.name}} | Java ${{ matrix.java.version}}'

.github/workflows/distribute.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ on:
1515
description: 'Version to bundle and distribute'
1616
required: true
1717
type: string
18+
permissions:
19+
contents: read
1820
jobs:
1921
distribute-spring-enterprise-release-bundle:
2022
runs-on: ${{ vars.UBUNTU_SMALL || 'ubuntu-latest' }}

.github/workflows/release-milestone.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
tags:
55
- v4.0.0-M[0-9]
66
- v4.0.0-RC[0-9]
7+
permissions:
8+
contents: read
79
concurrency:
810
group: ${{ github.workflow }}-${{ github.ref }}
911
jobs:

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
push:
44
tags:
55
- v4.0.[0-9]+
6+
permissions:
7+
contents: read
68
concurrency:
79
group: ${{ github.workflow }}-${{ github.ref }}
810
jobs:
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: '0 5 * * *'
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

.github/workflows/run-system-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
push:
44
branches:
55
- 'main'
6+
permissions:
7+
contents: read
68
jobs:
79
run-system-tests:
810
name: 'Java ${{ matrix.java.version}}'

.github/workflows/trigger-docs-build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ on:
1212
description: 'Version being build (e.g. 1.0.3-SNAPSHOT)'
1313
required: false
1414
permissions:
15-
actions: write
15+
contents: read
1616
jobs:
1717
trigger-docs-build:
1818
name: Trigger Docs Build
1919
if: github.repository_owner == 'spring-projects'
2020
runs-on: ${{ vars.UBUNTU_SMALL || 'ubuntu-latest' }}
21+
permissions:
22+
actions: write
2123
steps:
2224
- name: Check Out
2325
uses: actions/checkout@v4

0 commit comments

Comments
 (0)