Skip to content

Commit 70e156d

Browse files
committed
Merge branch 'main' into add-codespellrc
2 parents bc8804d + 18075ae commit 70e156d

File tree

102 files changed

+11444
-2085
lines changed

Some content is hidden

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

102 files changed

+11444
-2085
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@
2020

2121
.pre-commit-config.yaml @jbampton
2222
/.github/linters/ @jbampton
23+
24+
/plugins/network-elements/nsx/ @Pearl1594 @nvazquez

.github/dependabot.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,19 @@
2222

2323
version: 2
2424
updates:
25-
- package-ecosystem: "maven" # See documentation for possible values
26-
directory: "/" # Location of package manifests
25+
- package-ecosystem: "github-actions"
26+
directory: "/"
27+
open-pull-requests-limit: 2
28+
schedule:
29+
interval: "weekly"
30+
groups:
31+
github-actions-dependencies:
32+
patterns:
33+
- "*"
34+
cooldown:
35+
default-days: 7
36+
- package-ecosystem: "maven"
37+
directory: "/"
2738
schedule:
2839
interval: "daily"
2940
cooldown:

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build:
3131
runs-on: ubuntu-22.04
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434

3535
- name: Set up JDK 17
3636
uses: actions/setup-java@v5

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
smoke/test_list_volumes"]
218218

219219
steps:
220-
- uses: actions/checkout@v5
220+
- uses: actions/checkout@v6
221221
with:
222222
fetch-depth: 0
223223

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: codecov
3333
runs-on: ubuntu-22.04
3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 0
3838

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
language: ["actions"]
3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
- name: Initialize CodeQL
4040
uses: github/codeql-action/init@v3
4141
with:

.github/workflows/docker-cloudstack-simulator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set Docker repository name
4848
run: echo "DOCKER_REPOSITORY=apache" >> $GITHUB_ENV
4949

50-
- uses: actions/checkout@v5
50+
- uses: actions/checkout@v6
5151

5252
- name: Set ACS version
5353
run: echo "ACS_VERSION=$(grep '<version>' pom.xml | head -2 | tail -1 | cut -d'>' -f2 |cut -d'<' -f1)" >> $GITHUB_ENV

.github/workflows/main-sonar-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: Main Sonar JaCoCo Build
3333
runs-on: ubuntu-22.04
3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 0
3838

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-22.04
3333
steps:
3434
- name: Check Out
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
- name: Install
3737
run: |
3838
python -m pip install --upgrade pip

.github/workflows/rat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build:
3131
runs-on: ubuntu-22.04
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
- name: Set up JDK 17
3535
uses: actions/setup-java@v5
3636
with:

0 commit comments

Comments
 (0)