Skip to content

Commit fa62118

Browse files
committed
Update GHA
1 parent 5552450 commit fa62118

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/actions/build_setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
25
2525
2626
- name: Setup Gradle
27-
uses: gradle/actions/setup-gradle@v5
27+
uses: gradle/actions/setup-gradle@v6
2828
with:
2929
cache-write-only: ${{ inputs.update-cache }}
3030
gradle-home-cache-includes: |

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Checkout Repository
36-
uses: actions/checkout@v6
36+
uses: actions/checkout@v7
3737
with:
3838
ref: ${{ inputs.target_branch || github.ref }}
3939

.github/workflows/format_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout Repository
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@v7
2424
with:
2525
ref: ${{ github.head_ref }}
2626

.github/workflows/test_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout Repository
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v7
2121

2222
- name: Apply patch to buildscript.properties
2323
run: sed -i 's/debug_all = false/debug_all = true/g' buildscript.properties

.github/workflows/update_buildscript.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout Repository
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323

2424
- name: Setup Build
2525
uses: ./.github/actions/build_setup
@@ -35,7 +35,7 @@ jobs:
3535
3636
- name: Create Pull Request
3737
id: create-pull-request
38-
uses: peter-evans/create-pull-request@v7
38+
uses: peter-evans/create-pull-request@v8
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4141
with:

.github/workflows/update_gradle_cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout Repository
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323

2424
- name: Setup Build
2525
uses: ./.github/actions/build_setup

0 commit comments

Comments
 (0)