Skip to content

Commit

Permalink
Fix checkout and setup-java versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kyri-petrou committed Nov 28, 2024
1 parent 45ddaf1 commit cf824e2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
fail-fast: false
steps:
- name: Checkout current branch
uses: actions/checkout@4.2.2
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
- name: Setup Scala and Java
uses: actions/setup-java@4.5.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: 11
Expand All @@ -43,11 +43,11 @@ jobs:
AWS_SECRET_ACCESS_KEY: dummykey
AWS_REGION: us-east-1
steps:
- uses: actions/checkout@4.2.2
- uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
- name: Setup Scala and Java
uses: actions/setup-java@4.5.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: ${{ matrix.java }}
Expand All @@ -66,11 +66,11 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout current branch
uses: actions/checkout@4.2.2
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
- name: Setup Scala and Java
uses: actions/setup-java@4.5.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: 11
Expand All @@ -95,11 +95,11 @@ jobs:
needs: [ci]
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@4.2.2
- uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
- name: Setup Scala and Java
uses: actions/setup-java@4.5.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: 11
Expand Down

0 comments on commit cf824e2

Please sign in to comment.