Skip to content

Commit

Permalink
Update github workflows
Browse files Browse the repository at this point in the history
Switch to 6.3.x branch
  • Loading branch information
rainboyan committed Jan 9, 2025
1 parent 9c35948 commit 7f1a0b3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: Grace CI
on:
push:
branches:
- 6.2.x
- 6.3.x
pull_request:
branches:
- 6.2.x
- 6.3.x
workflow_dispatch:
jobs:
build:
permissions:
contents: read # to fetch code (actions/checkout)
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17']
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
permissions:
contents: read # to fetch code (actions/checkout)
checks: write
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout repository
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
types: [closed,reopened]
push:
branches:
- 6.2.x
- 6.3.x
workflow_dispatch:
jobs:
release_notes:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
create_draft_release:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
Expand All @@ -24,7 +24,7 @@ jobs:
${{ github.ref_name }}
release_and_publish:
needs: create_draft_release
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17']
Expand Down

0 comments on commit 7f1a0b3

Please sign in to comment.