Skip to content

Commit b6cc5a4

Browse files
committed
Update github workflows
Switch to 6.3.x branch
1 parent 599a476 commit b6cc5a4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/gradle.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: Grace CI
22
on:
33
push:
44
branches:
5-
- '[5-9]+.[0-9]+.x'
5+
- 6.3.x
66
pull_request:
77
branches:
8-
- '[5-9]+.[0-9]+.x'
8+
- 6.3.x
99
workflow_dispatch:
1010
jobs:
1111
build:
1212
permissions:
1313
contents: read # to fetch code (actions/checkout)
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
1717
java: ['17']
@@ -40,7 +40,7 @@ jobs:
4040
permissions:
4141
contents: read # to fetch code (actions/checkout)
4242
checks: write
43-
runs-on: ubuntu-22.04
43+
runs-on: ubuntu-latest
4444
steps:
4545
- name: Checkout repository
4646
env:

.github/workflows/release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
types: [closed,reopened]
55
push:
66
branches:
7-
- 6.2.x
7+
- 6.3.x
88
workflow_dispatch:
99
jobs:
1010
release_notes:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
create_draft_release:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-latest
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
steps:
@@ -24,7 +24,7 @@ jobs:
2424
${{ github.ref_name }}
2525
release_and_publish:
2626
needs: create_draft_release
27-
runs-on: ubuntu-22.04
27+
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
3030
java: ['17']

0 commit comments

Comments
 (0)