Skip to content

Commit c2781e9

Browse files
committed
Update checkout and setup-java actions to v3
1 parent 8841a05 commit c2781e9

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
runs:
99
using: "composite"
1010
steps:
11-
- uses: actions/setup-java@v2
11+
- uses: actions/setup-java@v3
1212
id: setup-gradle-jdk
1313
with:
1414
distribution: temurin

.github/actions/setup-test-jdk/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Sets up the JDK required to run platform-tooling-support-tests
33
runs:
44
using: "composite"
55
steps:
6-
- uses: actions/setup-java@v2
6+
- uses: actions/setup-java@v3
77
with:
88
distribution: temurin
99
java-version: 8

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
language: ['java', 'javascript']
2323
steps:
2424
- name: Check out repository
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626
- name: Initialize CodeQL
2727
uses: github/codeql-action/init@v1
2828
with:

.github/workflows/cross-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Check out repository
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
2828
with:
2929
fetch-depth: 1
3030
- name: Set up Test JDK

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Check out repository
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v3
1111
with:
1212
fetch-depth: 1
1313
- name: Validate Gradle wrapper

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Check out repository
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
with:
2525
fetch-depth: 1
2626
- name: Install Graphviz
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: windows-latest
5050
steps:
5151
- name: Check out repository
52-
uses: actions/checkout@v2
52+
uses: actions/checkout@v3
5353
with:
5454
fetch-depth: 1
5555
- name: Build
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: macos-latest
6060
steps:
6161
- name: Check out repository
62-
uses: actions/checkout@v2
62+
uses: actions/checkout@v3
6363
with:
6464
fetch-depth: 1
6565
- name: Build
@@ -72,7 +72,7 @@ jobs:
7272
if: github.event_name == 'push' && github.repository == 'junit-team/junit5' && (startsWith(github.ref, 'refs/heads/releases/') || github.ref == 'refs/heads/main')
7373
steps:
7474
- name: Check out repository
75-
uses: actions/checkout@v2
75+
uses: actions/checkout@v3
7676
with:
7777
fetch-depth: 1
7878
- name: Publish
@@ -90,7 +90,7 @@ jobs:
9090
if: github.event_name == 'push' && github.repository == 'junit-team/junit5' && github.ref == 'refs/heads/main'
9191
steps:
9292
- name: Check out repository
93-
uses: actions/checkout@v2
93+
uses: actions/checkout@v3
9494
with:
9595
fetch-depth: 1
9696
- name: Install Graphviz

.github/workflows/reproducible-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Check out repository
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
with:
2323
fetch-depth: 1
2424
- name: Restore Gradle cache and display toolchains

0 commit comments

Comments
 (0)