Skip to content

Commit

Permalink
update checkout action to remove deprecation notice (#238)
Browse files Browse the repository at this point in the history
* update checkout action to remove deprecation notice

* update setup-java action too
  • Loading branch information
elijulian authored May 28, 2024
1 parent 0729de1 commit 44f2655
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request_worklow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK 1.8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8.0.232
distribution: adopt
Expand Down

0 comments on commit 44f2655

Please sign in to comment.