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
4 changes: 4 additions & 0 deletions .changeset/sync-develop-auto-ci-parity.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
---

CI-only: sync develop-auto workflow files to develop for CI parity. No version bump.
2 changes: 1 addition & 1 deletion .github/workflows/changeset-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
steps:
- name: Mint app token
id: app-token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.RELEASE_BOT_APP_ID }}
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,21 @@ jobs:
# because a single codecov-action invocation applies one flag set to
# every file it uploads.
- name: Upload ornn-api coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v7
if: ${{ !cancelled() }}
with:
flags: api
fail_ci_if_error: false
files: ./ornn-api/coverage/lcov.info
- name: Upload ornn-web coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v7
if: ${{ !cancelled() }}
with:
flags: web
fail_ci_if_error: false
files: ./ornn-web/coverage/lcov.info
- name: Upload TS SDK coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v7
if: ${{ !cancelled() }}
with:
flags: sdk-ts
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
# Codecov upload (#471) — same as the bun job but for the
# Python SDK's coverage.xml.
- name: Upload Python coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v7
if: ${{ !cancelled() }}
with:
flags: python
Expand Down
Loading