Skip to content

Commit c8b43e9

Browse files
committed
[#noissue] update github action
1 parent 4824c12 commit c8b43e9

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/it-command.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
body: |
2121
> Action has been started. [Click here to see the action](${{ steps.vars.outputs.run-url }})
2222
- name: Git checkout
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
with:
2525
ref: 'refs/pull/${{ env.PR_NUMBER }}/merge'
2626
- name: Cache node modules
@@ -49,7 +49,7 @@ jobs:
4949
sudo rm -rf /usr/share/dotnet
5050
df -h
5151
- name: Set up JDK 7
52-
uses: actions/setup-java@v2
52+
uses: actions/setup-java@v3
5353
with:
5454
distribution: 'zulu'
5555
java-version: 7

.github/workflows/it-schedule.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-20.04
88
steps:
99
- name: Git checkout
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v3
1111
- name: Cache node modules
1212
uses: actions/cache@v3
1313
with:
@@ -34,7 +34,7 @@ jobs:
3434
sudo rm -rf /usr/share/dotnet
3535
df -h
3636
- name: Set up JDK 7
37-
uses: actions/setup-java@v2
37+
uses: actions/setup-java@v3
3838
with:
3939
distribution: 'zulu'
4040
java-version: 7

.github/workflows/maven-central-deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- run: |
1919
echo "Release ref: ${{ github.event.inputs.git-ref }}"
2020
- name: Git checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
with:
2323
ref: ${{ github.event.inputs.git-ref }}
2424
- name: Cache Maven packages
@@ -42,7 +42,7 @@ jobs:
4242
restore-keys: |
4343
${{ runner.os }}-node_install-
4444
- name: Set up JDK 7
45-
uses: actions/setup-java@v2
45+
uses: actions/setup-java@v3
4646
with:
4747
distribution: 'zulu'
4848
java-version: '7'

.github/workflows/maven.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-20.04
1616
steps:
1717
- name: Git checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919
- name: Cache Maven packages
2020
uses: actions/cache@v3
2121
with:
@@ -48,7 +48,6 @@ jobs:
4848
- name: Code coverage report
4949
run: ./mvnw --batch-mode -Pcode.coverage jacoco:report --file pom.xml
5050
- name: Code coverage
51-
uses: codecov/codecov-action@v1
51+
uses: codecov/codecov-action@v3
5252
with:
53-
files: ./**/target/site/jacoco/jacoco.xml
5453
name: codecov

0 commit comments

Comments
 (0)