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
5 changes: 4 additions & 1 deletion .github/workflows/golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ jobs:
output-credentials: true
- name: Install DVC
if: ${{ inputs.pull-dvc-datasets }}
run: pip install dvc[s3]
run: |
pip install dvc[s3]
# TODO: waiting for https://github.com/treeverse/dvc/issues/10966
pipx runpip dvc install boto3
- name: Set-up git credentials for dvc
if: ${{ inputs.pull-dvc-datasets }}
env:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ jobs:
output-credentials: true
- name: Install DVC
if: ${{ inputs.pull-dvc-datasets }}
run: pipx install dvc[s3]
run: |
pipx install dvc[s3]
# TODO: waiting for https://github.com/treeverse/dvc/issues/10966
pipx runpip dvc install boto3
- name: Set-up credentials
if: ${{ inputs.pull-dvc-datasets }}
env:
Expand Down
9 changes: 6 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GitHub Workflows Release Notes

## 0.0.3-dev - 2025-12-16
## 0.0.3-dev - 2026-01-12

### Features

Expand Down Expand Up @@ -52,6 +52,7 @@

### Bug Fixes

- Temporary fix for dvc boto3 import issue (PR #228 by @chicco785)
- deployment: fix app token scope (PR #209 by @cosimomeli)
- release notes: fix not progressive releases and detached head commits (PR #206
by @chicco785)
Expand Down Expand Up @@ -80,12 +81,14 @@

### Dependencies

- Bump dawidd6/action-download-artifact from 11 to 12 (PR #227 by
@dependabot[bot])
- Bump SonarSource/sonarqube-scan-action from 6.0.0 to 7.0.0 (PR #225 by
@dependabot[bot])
- Bump DavidAnson/markdownlint-cli2-action from 21 to 22 (PR #223 by
@dependabot[bot])
- Bump actions/upload-artifact from 5 to 6 (PR #226 by @dependabot[bot])
- Bump actions/cache from 4 to 5 (PR #224 by @dependabot[bot])
- Bump SonarSource/sonarqube-scan-action from 6.0.0 to 7.0.0 (PR #225 by
@dependabot[bot])
- Bump actions/checkout from 5 to 6 (PR #219 by @dependabot[bot])
- Bump DavidAnson/markdownlint-cli2-action from 20 to 21 (PR #218 by
@dependabot[bot])
Expand Down
Loading