Skip to content

Commit 44f2655

Browse files
authored
update checkout action to remove deprecation notice (#238)
* update checkout action to remove deprecation notice * update setup-java action too
1 parent 0729de1 commit 44f2655

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
# We must fetch at least the immediate parents so that if this is
3636
# a pull request then we can checkout the head.

.github/workflows/pull_request_worklow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Check out Repository
8-
uses: actions/checkout@v3
8+
uses: actions/checkout@v4
99

1010
- name: Set up JDK 1.8
11-
uses: actions/setup-java@v3
11+
uses: actions/setup-java@v4
1212
with:
1313
java-version: 8.0.232
1414
distribution: adopt

0 commit comments

Comments
 (0)