Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.

Commit 7e38164

Browse files
committed
Actions versions update
1 parent b01f036 commit 7e38164

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
- name: Set up JDK 1.8
41-
uses: actions/setup-java@v3
41+
uses: actions/setup-java@v4
4242
with:
4343
distribution: 'temurin'
4444
java-version: '8'
@@ -47,4 +47,6 @@ jobs:
4747
run: ./gradlew build
4848

4949
- name: Codecov upload
50-
run: bash <(curl -s https://codecov.io/bash)
50+
uses: codecov/codecov-action@v4
51+
with:
52+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444

4545
- name: Generate versions
4646
uses: HardNorth/github-version-generate@v1
@@ -50,7 +50,7 @@ jobs:
5050
version-file-extraction-pattern: ${{ env.VERSION_EXTRACT_PATTERN }}
5151

5252
- name: Set up JDK 1.8
53-
uses: actions/setup-java@v3
53+
uses: actions/setup-java@v4
5454
with:
5555
distribution: 'temurin'
5656
java-version: '8'
@@ -108,7 +108,7 @@ jobs:
108108

109109
- name: Checkout develop branch
110110
if: ${{ github.ref }} == 'master'
111-
uses: actions/checkout@v3
111+
uses: actions/checkout@v4
112112
with:
113113
ref: 'develop'
114114
fetch-depth: 0

0 commit comments

Comments
 (0)