Skip to content

Commit a73f9c7

Browse files
chore: bump the all-actions group across 1 directory with 5 updates (#180)
Bumps the all-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | 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](actions/checkout@v4...v6) 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/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cf8afba commit a73f9c7

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/agent-checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313

1414
- name: Set up Python 3.11
15-
uses: actions/setup-python@v5
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: '3.11'
1818

@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Upload agent reports
4747
if: always()
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v7
4949
with:
5050
name: agent-check-reports
5151
path: docs/reports/
@@ -55,10 +55,10 @@ jobs:
5555
runs-on: ubuntu-latest
5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v6
5959

6060
- name: Set up Node.js 22
61-
uses: actions/setup-node@v4
61+
uses: actions/setup-node@v6
6262
with:
6363
node-version: '22'
6464

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
industrial-validation:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313

1414
- name: Set up Python 3.11
15-
uses: actions/setup-python@v5
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: '3.11'
1818

1919
- name: Set up Node.js 22
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: '22'
2323

@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Upload paper replay artifact
3939
if: always()
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v7
4141
with:
4242
name: paper-replay-results
4343
path: artifacts/paper_replay_results.json

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v3
32+
uses: github/codeql-action/init@v4
3333
with:
3434
languages: ${{ matrix.language }}
3535
build-mode: none
3636

3737
- name: Perform CodeQL analysis
38-
uses: github/codeql-action/analyze@v3
38+
uses: github/codeql-action/analyze@v4

.github/workflows/validation_runner.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ jobs:
3939

4040
- name: Checkout repository
4141
id: checkout
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343
continue-on-error: true
4444
with:
4545
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
4646
ref: ${{ github.event.pull_request.head.sha || github.sha }}
4747

4848
- name: Set up Python 3.11
4949
id: setup_python
50-
uses: actions/setup-python@v5
50+
uses: actions/setup-python@v6
5151
continue-on-error: true
5252
with:
5353
python-version: '3.11'
@@ -58,7 +58,7 @@ jobs:
5858
run: python -m py_compile scripts/publish_hash_chilli_ci_artifacts.py
5959

6060
- name: Set up Node.js 22
61-
uses: actions/setup-node@v4
61+
uses: actions/setup-node@v6
6262
with:
6363
node-version: "22"
6464

@@ -183,7 +183,7 @@ jobs:
183183
184184
- name: Upload CFI-03 Hash/chilli CI artifacts
185185
if: always() && hashFiles(env.CFI_RESULT_PATH) != ''
186-
uses: actions/upload-artifact@v4
186+
uses: actions/upload-artifact@v7
187187
with:
188188
name: validation-runner-cfi-artifacts
189189
path: |

0 commit comments

Comments
 (0)