Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade ci plugins #127

Merged
merged 1 commit into from
Feb 6, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/headers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
uses: actions/checkout@v4

- name: Setup Java 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11

- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.3
uses: coursier/cache-action@v6

- name: Check headers
run: sbt +headerCheckAll
4 changes: 2 additions & 2 deletions .github/workflows/java-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
uses: actions/checkout@v4

- name: Setup Java 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11

- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.3
uses: coursier/cache-action@v6

# Not sure why need to do docs/javafmtCheckAll, figure out later
- name: Check headers
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/link-validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
git checkout scratch

- name: Setup Java 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8

- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.0
uses: coursier/cache-action@v6

- name: Setup Coursier
uses: coursier/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-1.0-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
ref: 1.0.x

- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8

- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.0
uses: coursier/cache-action@v6

- name: Install graphviz
run: sudo apt-get install -y graphviz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-1.0-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
ref: 1.0.x

- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8

- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.0
uses: coursier/cache-action@v6

- name: Install graphviz
run: sudo apt-get install -y graphviz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
fetch-tags: true

- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8

- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.0
uses: coursier/cache-action@v6

- name: Install graphviz
run: sudo apt-get install -y graphviz
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
git checkout scratch

- name: Setup Java ${{ matrix.javaVersion }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.javaVersion }}

- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.3
uses: coursier/cache-action@v6

- name: Test against ${{ matrix.container }}
run: |-
Expand All @@ -76,13 +76,13 @@ jobs:
git checkout scratch

- name: Setup Java 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8

- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.3
uses: coursier/cache-action@v6

- name: MiMa Check
run: sbt +mimaReportBinaryIssues
Expand All @@ -108,13 +108,13 @@ jobs:
git checkout scratch

- name: Setup Java 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11

- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.3
uses: coursier/cache-action@v6

- name: Create all API docs for artifacts/website and all reference docs
run: sbt "unidoc; docs/paradox"
Loading