Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/nebula-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ jobs:
java: [ 8, 9, 11, 17, 21]
name: CI with Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup jdk
uses: actions/setup-java@v3
uses: actions/setup-java@v5
with:
# Install both the version we'll test with AND 8, which goes later so that it's the default for gradle to run with.
java-version: |
${{ matrix.java }}
8
distribution: 'zulu'
- uses: actions/cache@v4
- uses: actions/cache@v5
id: gradle-cache
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
restore-keys: |
- ${{ runner.os }}-gradle-
- uses: actions/cache@v4
- uses: actions/cache@v5
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/nebula-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,22 @@ on:
jobs:
build:
runs-on: ubuntu-latest
environment: Publish
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Setup jdk 8
uses: actions/setup-java@v3
uses: actions/setup-java@v5
with:
java-version: '8' # For publishing build with 8 for compatibility
distribution: 'zulu'
- uses: actions/cache@v4
- uses: actions/cache@v5
id: gradle-cache
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
restore-keys: |
- ${{ runner.os }}-gradle-
- uses: actions/cache@v4
- uses: actions/cache@v5
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/nebula-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@ on:
jobs:
build:
runs-on: ubuntu-latest
environment: Publish
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v5
with:
java-version: '8' # For publishing build with 8 for compatibility
distribution: 'zulu'
- uses: actions/cache@v4
- uses: actions/cache@v5
id: gradle-cache
with:
path: |
~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
- uses: actions/cache@v4
- uses: actions/cache@v5
id: gradle-wrapper-cache
with:
path: |
Expand Down