Skip to content

Commit

Permalink
Bump dependency versions in GitHub Actions config (#683)
Browse files Browse the repository at this point in the history
We get various warnings about use of deprecated features when running CI jobs; these version bumps seem to fix them.
  • Loading branch information
msridhar authored Oct 31, 2022
1 parent b696757 commit f27e72b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Check out NullAway sources
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
Expand Down Expand Up @@ -80,9 +80,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: 'Set up JDK 8'
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'temurin'
Expand Down

0 comments on commit f27e72b

Please sign in to comment.