Skip to content

Commit 876c5ba

Browse files
committed
Update GitHub Actions workflows for 3.4.x
1 parent 49f010b commit 876c5ba

File tree

11 files changed

+45
-147
lines changed

11 files changed

+45
-147
lines changed

.github/workflows/ci-native.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI Native
1+
name: CI Native 3.4.x
22

33
on:
44
workflow_dispatch:
@@ -21,7 +21,10 @@ jobs:
2121
os: windows-latest
2222
name: CI Build ${{ matrix.nickname }}
2323
steps:
24-
- uses: actions/checkout@v3
24+
- name: Checkout source code
25+
uses: actions/checkout@v4.2.2
26+
with:
27+
ref: '3.4.x'
2528
- uses: actions/setup-java@v3
2629
with:
2730
distribution: adopt

.github/workflows/ci-pr.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: CI
1+
name: CI 3.4.x
22

33
on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- main
7+
- 3.4.x
88
paths-ignore:
99
- '.github/**'
1010

@@ -24,9 +24,12 @@ jobs:
2424
- nickname: windows jdk17
2525
java: 17
2626
os: windows-latest
27-
name: CI Build ${{ matrix.nickname }}
27+
name: CI Build for 3.4.x on ${{ matrix.nickname }}
2828
steps:
29-
- uses: actions/checkout@v4.2.2
29+
- name: Checkout source code
30+
uses: actions/checkout@v4.2.2
31+
with:
32+
ref: '3.4.x'
3033
- name: Spring Gradle Build Action
3134
uses: spring-io/spring-gradle-build-action@v2
3235
with:
@@ -39,7 +42,10 @@ jobs:
3942
runs-on: ubuntu-latest
4043
if: github.repository_owner == 'spring-projects'
4144
steps:
42-
- uses: actions/checkout@v4.2.2
45+
- name: Checkout source code
46+
uses: actions/checkout@v4.2.2
47+
with:
48+
ref: '3.4.x'
4349
- name: Spring Gradle Build Action
4450
uses: spring-io/spring-gradle-build-action@v2
4551
with:
@@ -53,7 +59,7 @@ jobs:
5359
uri: 'https://repo.spring.io'
5460
username: ${{ secrets.ARTIFACTORY_USERNAME }}
5561
password: ${{ secrets.ARTIFACTORY_PASSWORD }}
56-
build-name: 'spring-shell-main'
62+
build-name: 'spring-shell-3.4.x'
5763
repository: 'libs-snapshot-local'
5864
folder: 'deployment-repository'
5965
signing-key: ${{ secrets.GPG_PRIVATE_KEY }}

.github/workflows/e2e.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: e2e
1+
name: e2e 3.4.x
22
run-name: ${{ format('{0} ({1})', github.workflow, github.ref_name) }}
33

44
on:
@@ -30,7 +30,10 @@ jobs:
3030
shell: bash
3131
run: |
3232
sysctl machdep.cpu
33-
- uses: actions/checkout@v3
33+
- name: Checkout source code
34+
uses: actions/checkout@v4.2.2
35+
with:
36+
ref: '3.4.x'
3437
- uses: graalvm/setup-graalvm@v1
3538
with:
3639
version: ${{ matrix.graal }}
@@ -82,14 +85,17 @@ jobs:
8285
nickname: linux
8386
- os: ubuntu-20.04
8487
nickname: linux
85-
name: E2E ${{ matrix.os }}
88+
name: E2E build for 3.4.x on ${{ matrix.os }}
8689
steps:
8790
- name: macos info
8891
if: runner.os == 'macOS'
8992
shell: bash
9093
run: |
9194
sysctl machdep.cpu
92-
- uses: actions/checkout@v3
95+
- name: Checkout source code
96+
uses: actions/checkout@v4.2.2
97+
with:
98+
ref: '3.4.x'
9399
- uses: actions/setup-java@v3
94100
with:
95101
distribution: adopt

.github/workflows/issue-handler.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/label-manage.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/manual.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Manual
1+
name: Manual 3.4.x
22

33
on:
44
workflow_dispatch:
@@ -22,9 +22,12 @@ jobs:
2222
os: ubuntu-latest
2323
graal: 22.3.0
2424
musl: true
25-
name: Build ${{ matrix.nickname }}
25+
name: Build 3.4.x on ${{ matrix.nickname }}
2626
steps:
27-
- uses: actions/checkout@v3
27+
- name: Checkout source code
28+
uses: actions/checkout@v4.2.2
29+
with:
30+
ref: '3.4.x'
2831
- uses: graalvm/setup-graalvm@v1
2932
with:
3033
version: ${{ matrix.graal }}

.github/workflows/next-dev-version.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- name: Checkout source code
11+
uses: actions/checkout@v4.2.2
12+
with:
13+
ref: '3.4.x'
1114
- name: Change Version
1215
run: |
1316
snapshotVersion=$( awk -F '=' '$1 == "version" { print $2 }' gradle.properties )

.github/workflows/release-ga.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/schedule-e2e.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Schedule e2e
1+
name: Schedule 3.4.x e2e
22

33
on:
44
workflow_dispatch:
@@ -14,12 +14,13 @@ jobs:
1414
if: github.repository_owner == 'spring-projects'
1515
strategy:
1616
matrix:
17-
branch: [ main, 3.3.x, 3.2.x ]
17+
branch: [ 3.4.x ]
1818
runs-on: ubuntu-latest
1919
steps:
20-
- name: Checkout
21-
uses: actions/checkout@v3
20+
- name: Checkout source code
21+
uses: actions/checkout@v4.2.2
2222
with:
23+
ref: '3.4.x'
2324
fetch-depth: 1
2425
- name: Dispatch
2526
env:

0 commit comments

Comments
 (0)