diff --git a/.github/workflows/golang.yaml b/.github/workflows/golang.yaml index aecb650..b3aa8f7 100644 --- a/.github/workflows/golang.yaml +++ b/.github/workflows/golang.yaml @@ -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: diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index bdffb19..eb49f30 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -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: diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index d1b2bfc..85fb4ea 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # GitHub Workflows Release Notes -## 0.0.3-dev - 2025-12-16 +## 0.0.3-dev - 2026-01-12 ### Features @@ -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) @@ -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])