Skip to content

Commit ab94cc5

Browse files
authored
Merge pull request #2894 from Iuri1012/update-github-actions
Update github actions versions
2 parents 2e0c8bd + c1b3dbd commit ab94cc5

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ jobs:
66
name: "Validation"
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: gradle/wrapper-validation-action@v1
9+
- uses: actions/checkout@v3.5.0
10+
- uses: gradle/wrapper-validation-action@v1.0.6

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
# Steps represent a sequence of tasks that will be executed as part of the job
2222
steps:
2323
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3.5.0
2525

2626
- name: Gradle wrapper validation
27-
uses: gradle/wrapper-validation-action@v1
27+
uses: gradle/wrapper-validation-action@v1.0.6
2828

2929
# Runs a single command using the runners shell
3030
- name: Install gpg secret key

.github/workflows/publish-snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
# Steps represent a sequence of tasks that will be executed as part of the job
1717
steps:
1818
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3.5.0
2020

2121
- name: Gradle wrapper validation
22-
uses: gradle/wrapper-validation-action@v1
22+
uses: gradle/wrapper-validation-action@v1.0.6
2323

2424
- name: Publish to GitHub
2525
run: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
# Steps represent a sequence of tasks that will be executed as part of the job
2525
steps:
2626
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v3.5.0
2828
with:
2929
fetch-depth: 0
3030

3131
- name: Gradle wrapper validation
32-
uses: gradle/wrapper-validation-action@v1
32+
uses: gradle/wrapper-validation-action@v1.0.6
3333

3434
# Runs a single command using the runners shell
3535
- name: Install gpg secret key

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# Ask matrix.js to produce 7 jobs
2121
MATRIX_JOBS: 7
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3.5.0
2424
with:
2525
fetch-depth: 1
2626
- id: set-matrix
@@ -37,12 +37,12 @@ jobs:
3737
env:
3838
TZ: ${{ matrix.tz }}
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3.5.0
4141
with:
4242
fetch-depth: 10
4343
# Install built-in JDK
4444
- name: 'Set up JDK ${{ matrix.jdk.version }} / ${{ matrix.jdk.distribution }}'
45-
uses: actions/setup-java@v2
45+
uses: actions/setup-java@v3.11.0
4646
if: ${{ matrix.jdk.distribution != 'jdkfile' }}
4747
with:
4848
distribution: ${{ matrix.jdk.distribution }}

0 commit comments

Comments
 (0)