Skip to content

Commit bf32a05

Browse files
Bump the github-actions group with 4 updates
Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/setup-python](https://github.com/actions/setup-python) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a359d0a commit bf32a05

18 files changed

+32
-32
lines changed

.github/workflows/build-electron-apps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
matrix: ${{ steps.discover.outputs.matrix }}
3131
has_apps: ${{ steps.discover.outputs.has_apps }}
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434

3535
- name: Free disk space
3636
uses: ./.github/actions/free-disk-space
@@ -88,7 +88,7 @@ jobs:
8888
app: ${{ fromJson(needs.discover-apps.outputs.matrix).app }}
8989

9090
steps:
91-
- uses: actions/checkout@v5
91+
- uses: actions/checkout@v6
9292

9393
- name: Setup Node.js
9494
uses: actions/setup-node@v6

.github/workflows/build_installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
INSTALLER_HASH: ${{ steps.calculate_hash.outputs.INSTALLER_HASH }}
3838
COMMIT_HASH: ${{ steps.get_commit.outputs.COMMIT_HASH }}
3939
steps:
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141

4242
- name: Print Git History and Version Info
4343
run: |

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'ready_for_ci')
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030

3131
- name: Free disk space
3232
uses: ./.github/actions/free-disk-space

.github/workflows/local_hybrid_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
needs: build-installer
3636
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'ready_for_ci')
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939

4040
- name: Remove existing GAIA installation
4141
shell: powershell
@@ -57,7 +57,7 @@ jobs:
5757
Write-Host "Expected installer hash: ${{ needs.build-installer.outputs.INSTALLER_HASH }}"
5858
5959
- name: Download GAIA Installer
60-
uses: actions/download-artifact@v4
60+
uses: actions/download-artifact@v6
6161
with:
6262
name: gaia-windows-installer-${{ needs.build-installer.outputs.VERSION }}-${{ needs.build-installer.outputs.COMMIT_HASH }}
6363
path: installer

.github/workflows/publish_installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
needs: [build-installer, build-electron-apps]
3131
if: always() && needs.build-installer.result == 'success' && (needs.build-electron-apps.result == 'success' || needs.build-electron-apps.result == 'skipped')
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0 # Fetch all history for release notes generation
3636

.github/workflows/test_agent_mcp_server.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828

2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232

3333
- name: Free disk space
3434
if: matrix.os == 'ubuntu-latest'
3535
uses: ./.github/actions/free-disk-space
3636

3737
- name: Set up Python 3.12
38-
uses: actions/setup-python@v5
38+
uses: actions/setup-python@v6
3939
with:
4040
python-version: '3.12'
4141

@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Upload test results
9292
if: always()
93-
uses: actions/upload-artifact@v4
93+
uses: actions/upload-artifact@v5
9494
with:
9595
name: test-results-${{ matrix.os }}
9696
path: |

.github/workflows/test_api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'ready_for_ci')
2727

2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030

3131
- name: Free disk space
3232
uses: ./.github/actions/free-disk-space

.github/workflows/test_chat_sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: [stx, miniforge]
3434
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'ready_for_ci')
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v6
3737

3838
- name: Download and Install Miniforge
3939
run: |

.github/workflows/test_code_agent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'ready_for_ci')
2727

2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030

3131
- name: Free disk space
3232
uses: ./.github/actions/free-disk-space

.github/workflows/test_electron.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
2525

2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828

2929
- name: Free disk space
3030
uses: ./.github/actions/free-disk-space
@@ -60,7 +60,7 @@ jobs:
6060
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
6161

6262
steps:
63-
- uses: actions/checkout@v5
63+
- uses: actions/checkout@v6
6464

6565
- name: Free disk space
6666
uses: ./.github/actions/free-disk-space
@@ -98,7 +98,7 @@ jobs:
9898
timeout-minutes: 20
9999

100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102

103103
- name: Free disk space
104104
uses: ./.github/actions/free-disk-space
@@ -142,7 +142,7 @@ jobs:
142142
path: src/gaia/apps/example/webui
143143

144144
steps:
145-
- uses: actions/checkout@v5
145+
- uses: actions/checkout@v6
146146

147147
- name: Free disk space
148148
uses: ./.github/actions/free-disk-space
@@ -215,7 +215,7 @@ jobs:
215215
path: src/gaia/apps/example/webui
216216

217217
steps:
218-
- uses: actions/checkout@v5
218+
- uses: actions/checkout@v6
219219

220220
- name: Free disk space
221221
uses: ./.github/actions/free-disk-space

0 commit comments

Comments
 (0)