Use recoverWith
instead of recover
in SnapshotSerializer
akka backwards compatibility
#1187
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Headers | |
on: | |
pull_request: | |
permissions: {} | |
jobs: | |
check-headers: | |
name: Check headers | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java 8 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 8 | |
- name: Cache Coursier cache | |
uses: coursier/[email protected] | |
- name: Check headers | |
run: |- | |
sbt \ | |
-Dsbt.override.build.repos=false \ | |
-Dsbt.log.noformat=false \ | |
+headerCheckAll |