Skip to content

Commit 8300eaa

Browse files
authored
Merge branch 'release/current' into improvment/clippy
2 parents ae3ca6c + 4e484f5 commit 8300eaa

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/openaev-validate-pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: "Generate a token"
1313
id: generate-token
1414
if: github.event.pull_request.head.repo.full_name == github.repository
15-
uses: actions/create-github-app-token@v2
15+
uses: actions/create-github-app-token@v3
1616
with:
1717
app-id: ${{ secrets.OPENAEV_PR_CHECKS_APP_ID }}
1818
private-key: ${{ secrets.OPENAEV_PR_CHECKS_PRIVATE_KEY }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: setup python
3636
uses: actions/setup-python@v6
3737
with:
38-
python-version: 3.8 #install the python needed
38+
python-version: 3.14 #install the python needed
3939
- name: Install dependencies
4040
run: |
4141
python -m pip install --upgrade pip

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openaev-agent"
3-
version = "2.2.1"
3+
version = "2.3.1"
44
edition = "2021"
55

66
[dependencies]
@@ -11,7 +11,7 @@ serde_json = {version = "1.0.140"}
1111
log = { version = "0.4.22", features = ["kv"] }
1212
hostname = "0.4.0"
1313
network-interface = "2.0.3"
14-
mid = "=3.0.2"
14+
mid = "=3.0.7"
1515
tracing-subscriber = { version = "0.3.18", features = ["json"] }
1616
tracing-appender = "0.2.3"
1717
rolling-file = "0.2.0"

installer/windows/agent-installer-service-user.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ try {
8181
echo "OpenAEV agent has been successfully installed"
8282
} catch {
8383
echo "Installation failed"
84-
if ((Get-Host).Version.Major -lt 7) { throw "PowerShell 7 or higher is required for installation" }
85-
else { echo $_ }
84+
echo "Note: PowerShell 7 or higher is recommended. If the issue persists, consider upgrading."
85+
echo $_
8686
} finally {
8787
Start-Sleep -Seconds 2
8888
rm -force ./agent-installer-service-user.exe;

installer/windows/agent-installer-session-user.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ try {
4646
echo "OpenAEV agent has been successfully installed"
4747
} catch {
4848
echo "Installation failed"
49-
if ((Get-Host).Version.Major -lt 7) { throw "PowerShell 7 or higher is required for installation" }
50-
else { echo $_ }
49+
echo "Note: PowerShell 7 or higher is recommended. If the issue persists, consider upgrading."
50+
echo $_
5151
} finally {
5252
Start-Sleep -Seconds 2
5353
rm -force ./agent-installer-session-user.exe;

installer/windows/agent-installer.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ try {
2525
echo "OpenAEV agent has been successfully installed"
2626
} catch {
2727
echo "Installation failed"
28-
if ((Get-Host).Version.Major -lt 7) { throw "PowerShell 7 or higher is required for installation" }
29-
else { echo $_ }
28+
echo "Note: PowerShell 7 or higher is recommended. If the issue persists, consider upgrading."
29+
echo $_
3030
} finally {
3131
Start-Sleep -Seconds 2
3232
rm -force ./openaev-installer.exe;

0 commit comments

Comments
 (0)