Skip to content

Commit e43a330

Browse files
authored
Fix Canary Workflow (#215)
## Summary With ubuntu-latest updating to ubuntu 24.04, sbt is no longer included. This change installs sbt for the workflow to fix it again. ## Checklist - [ ] Added Unit Tests - [ ] Covered by existing CI - [ ] Integration tested - [ ] Documentation update <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Chores** - Updated GitHub Actions workflow to include SBT setup for the build process. - Enhanced CI/CD pipeline configuration by removing branch restrictions for workflow triggers. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 4bb48de commit e43a330

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/push_to_canary.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
3636
distribution: corretto
3737
java-version: 17
3838

39+
- name: Setup SBT
40+
uses: sbt/setup-sbt@v1
41+
with:
42+
sbt-runner-version: 1.8.2
43+
3944
- name: Install Thrift
4045
env:
4146
THRIFT_VERSION: 0.21.0

0 commit comments

Comments
 (0)