Spaces:
Running on CPU Upgrade
Bump the actions group with 4 updates (#319)
Browse filesBumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv), [actions/setup-python](https://github.com/actions/setup-python) and [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action).
Updates `actions/checkout` from 4 to 6
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v6)
Updates `astral-sh/setup-uv` from 5 to 7
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](https://github.com/astral-sh/setup-uv/compare/v5...v7)
Updates `actions/setup-python` from 5 to 6
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v5...v6)
Updates `anthropics/claude-code-action` from 1 to 1.0.137
- [Release notes](https://github.com/anthropics/claude-code-action/releases)
- [Commits](https://github.com/anthropics/claude-code-action/compare/v1...v1.0.137)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: actions
- dependency-name: astral-sh/setup-uv
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: actions
- dependency-name: actions/setup-python
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: actions
- dependency-name: anthropics/claude-code-action
dependency-version: 1.0.137
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: actions
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
@@ -17,16 +17,16 @@ jobs:
|
|
| 17 |
name: Ruff
|
| 18 |
runs-on: ubuntu-latest
|
| 19 |
steps:
|
| 20 |
-
- uses: actions/checkout@
|
| 21 |
|
| 22 |
- name: Install uv
|
| 23 |
-
uses: astral-sh/setup-uv@
|
| 24 |
with:
|
| 25 |
enable-cache: true
|
| 26 |
cache-dependency-glob: uv.lock
|
| 27 |
|
| 28 |
- name: Set up Python
|
| 29 |
-
uses: actions/setup-python@
|
| 30 |
with:
|
| 31 |
python-version: "3.12"
|
| 32 |
|
|
@@ -43,16 +43,16 @@ jobs:
|
|
| 43 |
name: Tests
|
| 44 |
runs-on: ubuntu-latest
|
| 45 |
steps:
|
| 46 |
-
- uses: actions/checkout@
|
| 47 |
|
| 48 |
- name: Install uv
|
| 49 |
-
uses: astral-sh/setup-uv@
|
| 50 |
with:
|
| 51 |
enable-cache: true
|
| 52 |
cache-dependency-glob: uv.lock
|
| 53 |
|
| 54 |
- name: Set up Python
|
| 55 |
-
uses: actions/setup-python@
|
| 56 |
with:
|
| 57 |
python-version: "3.12"
|
| 58 |
|
|
|
|
| 17 |
name: Ruff
|
| 18 |
runs-on: ubuntu-latest
|
| 19 |
steps:
|
| 20 |
+
- uses: actions/checkout@v6
|
| 21 |
|
| 22 |
- name: Install uv
|
| 23 |
+
uses: astral-sh/setup-uv@v7
|
| 24 |
with:
|
| 25 |
enable-cache: true
|
| 26 |
cache-dependency-glob: uv.lock
|
| 27 |
|
| 28 |
- name: Set up Python
|
| 29 |
+
uses: actions/setup-python@v6
|
| 30 |
with:
|
| 31 |
python-version: "3.12"
|
| 32 |
|
|
|
|
| 43 |
name: Tests
|
| 44 |
runs-on: ubuntu-latest
|
| 45 |
steps:
|
| 46 |
+
- uses: actions/checkout@v6
|
| 47 |
|
| 48 |
- name: Install uv
|
| 49 |
+
uses: astral-sh/setup-uv@v7
|
| 50 |
with:
|
| 51 |
enable-cache: true
|
| 52 |
cache-dependency-glob: uv.lock
|
| 53 |
|
| 54 |
- name: Set up Python
|
| 55 |
+
uses: actions/setup-python@v6
|
| 56 |
with:
|
| 57 |
python-version: "3.12"
|
| 58 |
|
|
@@ -19,7 +19,7 @@ jobs:
|
|
| 19 |
if: github.event.pull_request.draft == false
|
| 20 |
runs-on: ubuntu-latest
|
| 21 |
steps:
|
| 22 |
-
- uses: actions/checkout@
|
| 23 |
with:
|
| 24 |
fetch-depth: 0
|
| 25 |
# On pull_request_target, keep checkout on the trusted base-repo ref.
|
|
@@ -64,7 +64,7 @@ jobs:
|
|
| 64 |
- name: Prepare Claude Code bin directory
|
| 65 |
run: mkdir -p "$HOME/.local/bin"
|
| 66 |
|
| 67 |
-
- uses: anthropics/claude-code-action@v1
|
| 68 |
with:
|
| 69 |
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
| 70 |
# Bypass the OIDC -> Claude GitHub App token exchange. That exchange
|
|
|
|
| 19 |
if: github.event.pull_request.draft == false
|
| 20 |
runs-on: ubuntu-latest
|
| 21 |
steps:
|
| 22 |
+
- uses: actions/checkout@v6
|
| 23 |
with:
|
| 24 |
fetch-depth: 0
|
| 25 |
# On pull_request_target, keep checkout on the trusted base-repo ref.
|
|
|
|
| 64 |
- name: Prepare Claude Code bin directory
|
| 65 |
run: mkdir -p "$HOME/.local/bin"
|
| 66 |
|
| 67 |
+
- uses: anthropics/claude-code-action@v1.0.137
|
| 68 |
with:
|
| 69 |
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
| 70 |
# Bypass the OIDC -> Claude GitHub App token exchange. That exchange
|
|
@@ -25,11 +25,11 @@ jobs:
|
|
| 25 |
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
|
| 26 |
runs-on: ubuntu-latest
|
| 27 |
steps:
|
| 28 |
-
- uses: actions/checkout@
|
| 29 |
with:
|
| 30 |
fetch-depth: 0
|
| 31 |
|
| 32 |
-
- uses: anthropics/claude-code-action@v1
|
| 33 |
with:
|
| 34 |
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
| 35 |
track_progress: true
|
|
|
|
| 25 |
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
|
| 26 |
runs-on: ubuntu-latest
|
| 27 |
steps:
|
| 28 |
+
- uses: actions/checkout@v6
|
| 29 |
with:
|
| 30 |
fetch-depth: 0
|
| 31 |
|
| 32 |
+
- uses: anthropics/claude-code-action@v1.0.137
|
| 33 |
with:
|
| 34 |
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
| 35 |
track_progress: true
|