Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update github workflows
Browse files Browse the repository at this point in the history
Switch to 6.3.x branch
rainboyan committed Jan 9, 2025
1 parent 0dc0615 commit 96a2dc0
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -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']
@@ -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:
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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:
@@ -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']

0 comments on commit 96a2dc0

Please sign in to comment.