Skip to content

Commit 01feffa

Browse files
committed
Merge branch 'release/v2026.07'
2 parents d9d2855 + 56c6420 commit 01feffa

File tree

105 files changed

+1668
-1136
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+1668
-1136
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
apt-get install -y sudo
4040
sudo apt-get install -y curl wget git unzip zip libicu66 tzdata clang
4141
- name: Checkout sources
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343
with:
4444
submodules: true
4545
- name: Setup .NET
46-
uses: actions/setup-dotnet@v4
46+
uses: actions/setup-dotnet@v5
4747
with:
4848
dotnet-version: 10.0.x
4949
- name: Configure arm64 packages
@@ -75,7 +75,7 @@ jobs:
7575
rm -r publish/*
7676
mv "sourcegit.${{ matrix.runtime }}.tar" publish
7777
- name: Upload artifact
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v7
7979
with:
8080
name: sourcegit.${{ matrix.runtime }}
8181
path: publish/*

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
version: ${{ steps.version.outputs.version }}
1818
steps:
1919
- name: Checkout sources
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
- name: Output version string
2222
id: version
2323
run: echo "version=$(cat VERSION)" >> "$GITHUB_OUTPUT"

.github/workflows/format-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
submodules: true
1919

2020
- name: Set up .NET
21-
uses: actions/setup-dotnet@v4
21+
uses: actions/setup-dotnet@v5
2222
with:
2323
dotnet-version: 10.0.x
2424

.github/workflows/localization-check.yml

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

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Set up Node.js
19-
uses: actions/setup-node@v4
19+
uses: actions/setup-node@v6
2020
with:
21-
node-version: '20.x'
21+
node-version: '24.x'
2222

2323
- name: Install dependencies
2424
run: npm install fs-extra@11.2.0 path@0.12.7 xml2js@0.6.2

.github/workflows/package.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runtime: [win-x64, win-arm64]
1616
steps:
1717
- name: Checkout sources
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
- name: Download build
20-
uses: actions/download-artifact@v4
20+
uses: actions/download-artifact@v8
2121
with:
2222
name: sourcegit.${{ matrix.runtime }}
2323
path: build/SourceGit
@@ -28,12 +28,12 @@ jobs:
2828
RUNTIME: ${{ matrix.runtime }}
2929
run: ./build/scripts/package.win.ps1
3030
- name: Upload package artifact
31-
uses: actions/upload-artifact@v4
31+
uses: actions/upload-artifact@v7
3232
with:
3333
name: package.${{ matrix.runtime }}
3434
path: build/sourcegit_*.zip
3535
- name: Delete temp artifacts
36-
uses: geekyeggo/delete-artifact@v5
36+
uses: geekyeggo/delete-artifact@v6
3737
with:
3838
name: sourcegit.${{ matrix.runtime }}
3939
osx-app:
@@ -44,9 +44,9 @@ jobs:
4444
runtime: [osx-x64, osx-arm64]
4545
steps:
4646
- name: Checkout sources
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848
- name: Download build
49-
uses: actions/download-artifact@v4
49+
uses: actions/download-artifact@v8
5050
with:
5151
name: sourcegit.${{ matrix.runtime }}
5252
path: build
@@ -59,12 +59,12 @@ jobs:
5959
tar -xf "build/sourcegit.${{ matrix.runtime }}.tar" -C build/SourceGit
6060
./build/scripts/package.osx-app.sh
6161
- name: Upload package artifact
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v7
6363
with:
6464
name: package.${{ matrix.runtime }}
6565
path: build/sourcegit_*.zip
6666
- name: Delete temp artifacts
67-
uses: geekyeggo/delete-artifact@v5
67+
uses: geekyeggo/delete-artifact@v6
6868
with:
6969
name: sourcegit.${{ matrix.runtime }}
7070
linux:
@@ -76,15 +76,15 @@ jobs:
7676
runtime: [linux-x64, linux-arm64]
7777
steps:
7878
- name: Checkout sources
79-
uses: actions/checkout@v4
79+
uses: actions/checkout@v6
8080
- name: Download package dependencies
8181
run: |
8282
export DEBIAN_FRONTEND=noninteractive
8383
ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime
8484
apt-get update
8585
apt-get install -y curl wget git dpkg-dev fakeroot tzdata zip unzip desktop-file-utils rpm libfuse2 file build-essential binutils
8686
- name: Download build
87-
uses: actions/download-artifact@v4
87+
uses: actions/download-artifact@v8
8888
with:
8989
name: sourcegit.${{ matrix.runtime }}
9090
path: build
@@ -98,14 +98,14 @@ jobs:
9898
tar -xf "build/sourcegit.${{ matrix.runtime }}.tar" -C build/SourceGit
9999
./build/scripts/package.linux.sh
100100
- name: Upload package artifacts
101-
uses: actions/upload-artifact@v4
101+
uses: actions/upload-artifact@v7
102102
with:
103103
name: package.${{ matrix.runtime }}
104104
path: |
105105
build/sourcegit-*.AppImage
106106
build/sourcegit_*.deb
107107
build/sourcegit-*.rpm
108108
- name: Delete temp artifacts
109-
uses: geekyeggo/delete-artifact@v5
109+
uses: geekyeggo/delete-artifact@v6
110110
with:
111111
name: sourcegit.${{ matrix.runtime }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
contents: write
3333
steps:
3434
- name: Checkout sources
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636
- name: Create release
3737
env:
3838
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939
TAG: ${{ github.ref_name }}
4040
VERSION: ${{ needs.version.outputs.version }}
4141
run: gh release create "$TAG" -t "$VERSION" --notes-from-tag
4242
- name: Download artifacts
43-
uses: actions/download-artifact@v4
43+
uses: actions/download-artifact@v8
4444
with:
4545
pattern: package.*
4646
path: packages

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
* Workspace
5959
* Custom Action
6060
* Create PR on GitHub/Gitlab/Gitea/Gitee/Bitbucket...
61-
* Using AI to generate commit message (C# port of [anjerodev/commitollama](https://github.com/anjerodev/commitollama))
61+
* Using AI to generate commit message
6262
* Built-in conventional commit message helper.
6363

6464
> [!WARNING]

THIRD-PARTY-LICENSES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ The project uses the following third-party libraries or assets
3636
### OpenAI .NET SDK
3737

3838
- **Source**: https://github.com/openai/openai-dotnet
39-
- **Version**: 2.8.0
39+
- **Version**: 2.9.1
4040
- **License**: MIT License
4141
- **License Link**: https://github.com/openai/openai-dotnet/blob/main/LICENSE
4242

4343
### Azure.AI.OpenAI
4444

4545
- **Source**: https://github.com/Azure/azure-sdk-for-net
46-
- **Version**: 2.8.0-beta.1
46+
- **Version**: 2.9.0-beta.1
4747
- **License**: MIT License
4848
- **License Link**: https://github.com/Azure/azure-sdk-for-net/blob/main/LICENSE.txt
4949

0 commit comments

Comments
 (0)