Skip to content

Commit 2a35d71

Browse files
ci(deps): bump the actions group across 1 directory with 7 updates
Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `6` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4.5.2` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `7` | `8` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `7` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `4` | `7` | Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v7) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v6...v7) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `docker/login-action` from 3 to 4.5.2 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4.5.2) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) Updates `actions/setup-python` from 5 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v7) Updates `astral-sh/setup-uv` from 4 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-version: 4.5.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '7' 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b983c01 commit 2a35d71

12 files changed

Lines changed: 24 additions & 24 deletions

.github/workflows/adaptive-impacted.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
isBootstrap: ${{ steps.delta.outputs.isBootstrap }}
3939
steps:
4040
- uses: actions/checkout@v7
41-
- uses: actions/setup-node@v6
41+
- uses: actions/setup-node@v7
4242
with:
4343
node-version: "20"
4444
cache: "npm"
@@ -76,7 +76,7 @@ jobs:
7676
repository: langflow-ai/langflow
7777
path: langflow-upstream
7878
fetch-depth: 0
79-
- uses: actions/setup-node@v6
79+
- uses: actions/setup-node@v7
8080
with:
8181
node-version: "20"
8282
cache: "npm"
@@ -174,7 +174,7 @@ jobs:
174174
steps:
175175
- uses: actions/checkout@v7
176176

177-
- uses: actions/setup-node@v6
177+
- uses: actions/setup-node@v7
178178
with:
179179
node-version: "20"
180180
cache: "npm"

.github/workflows/build-ollama-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v7
3030
- name: Log in to ghcr
31-
uses: docker/login-action@v3
31+
uses: docker/login-action@v4.5.2
3232
with:
3333
registry: ghcr.io
3434
username: ${{ github.actor }}

.github/workflows/daily-stable.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ jobs:
698698
run: npm ci
699699

700700
- name: Download all shard blobs
701-
uses: actions/download-artifact@v7
701+
uses: actions/download-artifact@v8
702702
with:
703703
pattern: blob-*
704704
path: all-blobs
@@ -717,7 +717,7 @@ jobs:
717717
# job, a run that died in prep) must not fail the merge — the reporter
718718
# renders that as UNKNOWN, which is the honest verdict.
719719
- name: Download shard liveness data
720-
uses: actions/download-artifact@v7
720+
uses: actions/download-artifact@v8
721721
if: always()
722722
continue-on-error: true
723723
with:
@@ -731,7 +731,7 @@ jobs:
731731
# continue-on-error: same reasoning as the liveness download — a shard that
732732
# never uploaded (an old job, a run that died in prep) must not fail the merge.
733733
- name: Download shard token consumption data
734-
uses: actions/download-artifact@v7
734+
uses: actions/download-artifact@v8
735735
if: always()
736736
continue-on-error: true
737737
with:

.github/workflows/issue-contract-guard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
group: issue-contract-guard-${{ github.event.issue.number || inputs.issue || github.run_id }}
7777
cancel-in-progress: true
7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v7
8080

8181
# The action prefers `issue` when both arrive, which would silently ignore a
8282
# `since` the dispatcher typed. Say so instead — a guard that quietly checks

.github/workflows/manual.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187

188188
steps:
189189
- uses: actions/checkout@v7
190-
- uses: actions/setup-node@v6
190+
- uses: actions/setup-node@v7
191191
with:
192192
node-version: "20"
193193
cache: "npm"
@@ -396,7 +396,7 @@ jobs:
396396
TOKENS_SUPPRESS_HISTORY: "1"
397397

398398
- name: Upload token consumption
399-
uses: actions/upload-artifact@v4
399+
uses: actions/upload-artifact@v7
400400
if: always()
401401
continue-on-error: true
402402
with:
@@ -453,7 +453,7 @@ jobs:
453453
route the any-completion tier locally (#1187)."
454454
exit 1
455455
- uses: actions/checkout@v7
456-
- uses: actions/setup-node@v6
456+
- uses: actions/setup-node@v7
457457
with:
458458
node-version: "20"
459459
cache: "npm"

.github/workflows/migration-fresh-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@v7
4242

4343
- name: Setup Python
44-
uses: actions/setup-python@v5
44+
uses: actions/setup-python@v7
4545
with:
4646
python-version: "3.12"
4747

.github/workflows/migration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ jobs:
4848
- uses: actions/checkout@v7
4949

5050
- name: Setup Python
51-
uses: actions/setup-python@v5
51+
uses: actions/setup-python@v7
5252
with:
5353
python-version: "3.12"
5454

5555
- name: Install uv
56-
uses: astral-sh/setup-uv@v4
56+
uses: astral-sh/setup-uv@v7
5757

5858
- name: Install test dependencies
5959
run: |

.github/workflows/migration-upgrade-with-flows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- uses: actions/checkout@v7
4343

4444
- name: Setup Python
45-
uses: actions/setup-python@v5
45+
uses: actions/setup-python@v7
4646
with:
4747
python-version: "3.12"
4848

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
steps:
8686
- uses: actions/checkout@v7
8787

88-
- uses: actions/setup-node@v6
88+
- uses: actions/setup-node@v7
8989
with:
9090
node-version: "20"
9191
cache: "npm"

.github/workflows/pr-validation.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v7
1515

16-
- uses: actions/setup-node@v6
16+
- uses: actions/setup-node@v7
1717
with:
1818
node-version: "20"
1919
cache: "npm"
@@ -61,7 +61,7 @@ jobs:
6161
steps:
6262
- uses: actions/checkout@v7
6363

64-
- uses: actions/setup-node@v6
64+
- uses: actions/setup-node@v7
6565
with:
6666
node-version: "20"
6767
cache: "npm"
@@ -84,7 +84,7 @@ jobs:
8484
steps:
8585
- uses: actions/checkout@v7
8686

87-
- uses: actions/setup-python@v6
87+
- uses: actions/setup-python@v7
8888
with:
8989
python-version: "3.12"
9090

@@ -120,7 +120,7 @@ jobs:
120120
with:
121121
fetch-depth: 0
122122

123-
- uses: actions/setup-node@v6
123+
- uses: actions/setup-node@v7
124124
with:
125125
node-version: "20"
126126
cache: "npm"
@@ -427,7 +427,7 @@ jobs:
427427
steps:
428428
- uses: actions/checkout@v7
429429

430-
- uses: actions/setup-node@v6
430+
- uses: actions/setup-node@v7
431431
with:
432432
node-version: "20"
433433
cache: "npm"

0 commit comments

Comments
 (0)