Skip to content

Commit 2fc2e5e

Browse files
committed
feat(ci): update GitHub Actions to support Node.js 24
1 parent 0d7478c commit 2fc2e5e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/actions/analyze-with-sonar/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
shell: bash
2323

2424
- name: Cache SonarCloud packages
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
with:
2727
path: ~/.sonar/cache
2828
key: ${{ runner.os }}-sonar-${{ hashFiles('**/*.gradle*') }}

.github/actions/setup-gradle/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ runs:
33
using: "composite"
44
steps:
55
- name: Set up JDK 17
6-
uses: actions/setup-java@v4
6+
uses: actions/setup-java@v5
77
with:
88
java-version: '17'
99
distribution: 'temurin'
1010

1111
- name: Cache Gradle packages
12-
uses: actions/cache@v4
12+
uses: actions/cache@v5
1313
with:
1414
path: |
1515
~/.gradle/caches

.github/workflows/assign-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Auto-assign issue'
12-
uses: pozil/auto-assign-issue@v1
12+
uses: pozil/auto-assign-issue@v2
1313
with:
1414
repo-token: ${{ secrets.GITHUB_TOKEN }}
1515
assignees: Keidan

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
echo "Event: ${{ github.event_name }}, Ref: ${{ github.ref }}, SHA: ${{ github.sha }}"
2727
- name: Checkout repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 0
3131
- uses: ./.github/actions/setup-gradle
@@ -65,7 +65,7 @@ jobs:
6565
if: needs.check-tag.outputs.valid == 'true'
6666
steps:
6767
- name: Checkout repository
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v6
6969
- uses: ./.github/actions/setup-gradle
7070
- name: Inject keystore.properties
7171
run: |
@@ -97,7 +97,7 @@ jobs:
9797
exit 1
9898
fi
9999
- name: Upload Signed APK artifact
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v6
101101
with:
102102
name: HexViewer-release-signed-${{ github.ref_name }}
103103
path: ./HexViewer-release-signed-${{ github.ref_name }}.apk
@@ -112,14 +112,14 @@ jobs:
112112
runs-on: ubuntu-latest
113113
steps:
114114
- name: Checkout repository
115-
uses: actions/checkout@v4
115+
uses: actions/checkout@v6
116116
- name: Extract tag name
117117
run: echo "TAG_NAME=${{ github.ref_name }}" >> $GITHUB_ENV
118118
- name: Make dir
119119
run: |
120120
mkdir -p artifacts
121121
- name: Download release artifacts
122-
uses: actions/download-artifact@v5
122+
uses: actions/download-artifact@v8
123123
with:
124124
name: HexViewer-release-signed-${{ env.TAG_NAME }}
125125
path: artifacts/

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414

1515
steps:
16-
- uses: actions/stale@v9
16+
- uses: actions/stale@v10
1717
with:
1818
repo-token: ${{ secrets.GITHUB_TOKEN }}
1919
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'

0 commit comments

Comments
 (0)