Skip to content

Commit aed86e1

Browse files
Update Github Actions to use latest NetflixOSS recommendations (#1133) (#1136)
Co-authored-by: Roberto Perez Alcolea <rperezalcolea@netflix.com>
1 parent d76c174 commit aed86e1

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/nebula-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ jobs:
1717
name: CI with Java ${{ matrix.java }}
1818
steps:
1919
- uses: actions/checkout@v6
20+
with:
21+
fetch-depth: 0
22+
- name: Setup git user
23+
run: |
24+
git config --global user.name "NetflixOss Maintainers"
25+
git config --global user.email "netflix-oss@netflix.com"
2026
- name: Setup jdk
2127
uses: actions/setup-java@v5
2228
with:

.github/workflows/nebula-publish.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,16 @@ jobs:
1414
environment: Publish
1515
steps:
1616
- uses: actions/checkout@v6
17+
with:
18+
fetch-depth: 0
19+
- name: Setup git user
20+
run: |
21+
git config --global user.name "NetflixOss Maintainers"
22+
git config --global user.email "netflix-oss@netflix.com"
1723
- name: Setup jdk 8
1824
uses: actions/setup-java@v5
1925
with:
20-
java-version: 1.8
26+
java-version: 8
2127
distribution: 'zulu'
2228
- uses: actions/cache@v5
2329
id: gradle-cache

0 commit comments

Comments
 (0)