Skip to content

Commit 5126c57

Browse files
chore(deps): bump the github group across 1 directory with 7 updates (#86)
Bumps the github group with 7 updates in the /.github/workflows 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-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `4` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `4` | `5` | | [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) | `5` | `7` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `7` | `8` | | [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-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) Updates `actions/setup-dotnet` from 4 to 5 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v4...v5) Updates `stefanzweifel/git-auto-commit-action` from 5 to 7 - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](stefanzweifel/git-auto-commit-action@v5...v7) Updates `peter-evans/create-pull-request` from 7 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v7...v8) 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: github - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/setup-dotnet dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kenneth Yang <[email protected]>
1 parent c3eaefa commit 5126c57

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/build-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818

1919
steps:
2020
- name: 🛎 Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
with:
2323
ref: ${{ github.head_ref }}
2424

2525
- name: 🐍 Setup Python
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: "3.13"
2929
cache: "pip"
@@ -35,6 +35,6 @@ jobs:
3535
run: hatch -e docs run build
3636

3737
- name: ⬆️ Upload Artifacts
38-
uses: actions/upload-pages-artifact@v3
38+
uses: actions/upload-pages-artifact@v4
3939
with:
4040
path: "site"

.github/workflows/build-models.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.head_ref }}
2323
token: ${{ secrets.WORKFLOW_COMMIT_TOKEN }}
2424

2525
- name: 🐍 Setup Python
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: '3.x'
2929
cache: 'pip'
3030

3131
- name: 🌐 Setup .NET
32-
uses: actions/setup-dotnet@v4
32+
uses: actions/setup-dotnet@v5
3333
with:
3434
dotnet-version: 9
3535

@@ -46,13 +46,13 @@ jobs:
4646

4747
- name: ✅ Commit code format changes (on PR)
4848
if: github.ref != 'refs/heads/main'
49-
uses: stefanzweifel/git-auto-commit-action@v5
49+
uses: stefanzweifel/git-auto-commit-action@v7
5050
with:
5151
commit_message: "chore: Build Models"
5252

5353
- name: 📤 PR changes (on main)
5454
if: github.ref == 'refs/heads/main'
55-
uses: peter-evans/create-pull-request@v7
55+
uses: peter-evans/create-pull-request@v8
5656
with:
5757
token: ${{ secrets.PR_TOKEN }}
5858
commit-message: "chore: Build Models"

.github/workflows/codeql-analysis.yml

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

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v3
46+
uses: github/codeql-action/init@v4
4747
with:
4848
languages: ${{ matrix.language }}
4949

5050
- name: Perform CodeQL Analysis
51-
uses: github/codeql-action/analyze@v3
51+
uses: github/codeql-action/analyze@v4

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Checkout Repository'
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
- name: 'Dependency Review'
1414
uses: actions/dependency-review-action@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: 🛎 Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
with:
2727
ref: ${{ github.head_ref }}
2828

.github/workflows/static-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: 🛎 Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
with:
2525
token: ${{ secrets.WORKFLOW_COMMIT_TOKEN }}
2626
ref: ${{ github.head_ref }}
@@ -33,15 +33,15 @@ jobs:
3333

3434
- name: ✅ Commit code format changes
3535
if: github.ref != 'refs/heads/main'
36-
uses: stefanzweifel/git-auto-commit-action@v5
36+
uses: stefanzweifel/git-auto-commit-action@v7
3737
with:
3838
commit_message: "chore: Format code"
3939
skip_fetch: true
4040
skip_checkout: true
4141

4242
- name: 📤 PR code format changes
4343
if: github.ref == 'refs/heads/main'
44-
uses: peter-evans/create-pull-request@v7
44+
uses: peter-evans/create-pull-request@v8
4545
with:
4646
token: ${{ secrets.PR_TOKEN }}
4747
commit-message: "chore: Format code"
@@ -56,12 +56,12 @@ jobs:
5656

5757
steps:
5858
- name: 🛎 Checkout
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v6
6060
with:
6161
ref: ${{ github.head_ref }}
6262

6363
- name: 🐍 Setup Python
64-
uses: actions/setup-python@v5
64+
uses: actions/setup-python@v6
6565
with:
6666
python-version: '3.13'
6767
cache: 'pip'

0 commit comments

Comments
 (0)