Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
java_version: [17, 21, 25]
steps:
- name: Check out jspecify-reference checker
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: jspecify-reference-checker
- name: Check out jspecify
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: jspecify/jspecify
path: jspecify
Expand All @@ -33,13 +33,13 @@ jobs:
# I am not sure what the best setup is - at this point initialize-project
# does not do anything useful.
- name: Check out jspecify/jdk
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: jspecify/jdk
path: jdk
# Clone the EISOP CF if necessary:
- name: Check out eisop/checker-framework
uses: actions/checkout@v6
uses: actions/checkout@v7
if: ${{ env.EISOP_RELEASE != 'true' }}
with:
repository: eisop/checker-framework
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
if: github.repository == 'jspecify/jspecify-reference-checker' && github.ref_name == 'main' && github.event_name == 'push'
steps:
- name: Check out the code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Set up Java
uses: actions/setup-java@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-conformance-test-reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
distribution: temurin
java-version: 17
- name: Check out JSpecify
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: jspecify/jspecify
ref: main
path: jspecify
- name: Check out the Reference Checker
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
path: reference-checker
Expand Down
Loading