Skip to content

Commit ef1b354

Browse files
author
SadiJr
committed
Merge branch 'main' into veeam-check-failure-when-restoring
2 parents dffe617 + 4e9c4a5 commit ef1b354

File tree

895 files changed

+58085
-7769
lines changed

Some content is hidden

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

895 files changed

+58085
-7769
lines changed

.asf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ github:
5353
- rajujith
5454
- alexandremattioli
5555
- vishesh92
56-
- soreana
5756
- GaOrtiga
5857
- acs-robot
5958
- BryanMLima
6059
- SadiJr
6160
- JoaoJandre
61+
- winterhazel
6262

6363
protected_branches: ~

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ concurrency:
2323
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
2424
cancel-in-progress: true
2525

26+
permissions:
27+
contents: read
28+
2629
jobs:
2730
build:
2831
runs-on: ubuntu-22.04
2932
steps:
30-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3134

3235
- name: Set up JDK 11
3336
uses: actions/setup-java@v3

.github/workflows/ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ concurrency:
2323
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
2424
cancel-in-progress: true
2525

26+
permissions:
27+
contents: read
28+
2629
jobs:
2730
build:
2831
if: github.repository == 'apache/cloudstack'
@@ -59,7 +62,8 @@ jobs:
5962
smoke/test_domain_network_offerings
6063
smoke/test_domain_service_offerings
6164
smoke/test_domain_vpc_offerings",
62-
"smoke/test_dynamicroles
65+
"smoke/test_cluster_drs
66+
smoke/test_dynamicroles
6367
smoke/test_enable_account_settings_for_domain
6468
smoke/test_enable_role_based_users_in_projects
6569
smoke/test_events_resource
@@ -89,6 +93,7 @@ jobs:
8993
smoke/test_nic
9094
smoke/test_nic_adapter_type
9195
smoke/test_non_contigiousvlan
96+
smoke/test_object_stores
9297
smoke/test_outofbandmanagement
9398
smoke/test_outofbandmanagement_nestedplugin
9499
smoke/test_over_provisioning
@@ -107,7 +112,8 @@ jobs:
107112
smoke/test_reset_configuration_settings
108113
smoke/test_reset_vm_on_reboot
109114
smoke/test_resource_accounting
110-
smoke/test_resource_detail",
115+
smoke/test_resource_detail
116+
smoke/test_global_acls",
111117
"smoke/test_router_dhcphosts
112118
smoke/test_router_dns
113119
smoke/test_router_dnsservice
@@ -192,7 +198,7 @@ jobs:
192198
"component/test_vpc_network_lbrules" ]
193199

194200
steps:
195-
- uses: actions/checkout@v3
201+
- uses: actions/checkout@v4
196202
with:
197203
fetch-depth: 0
198204

.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@v3
35+
- uses: actions/checkout@v4
3636
with:
3737
fetch-depth: 0
3838

.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@v3
50+
- uses: actions/checkout@v4
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/linter.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@v3
35+
uses: actions/checkout@v4
3636
- name: Install
3737
run: |
3838
python -m pip install --upgrade pip

.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@v3
35+
- uses: actions/checkout@v4
3636
with:
3737
fetch-depth: 0
3838

.github/workflows/rat.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ concurrency:
2323
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
2424
cancel-in-progress: true
2525

26+
permissions:
27+
contents: read
28+
2629
jobs:
2730
build:
2831
runs-on: ubuntu-22.04
2932
steps:
30-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3134
- name: Set up JDK 11
3235
uses: actions/setup-java@v3
3336
with:

.github/workflows/sonar-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
name: Sonar JaCoCo Coverage
3434
runs-on: ubuntu-22.04
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
with:
3838
ref: "refs/pull/${{ github.event.number }}/merge"
3939
fetch-depth: 0

.github/workflows/ui.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,15 @@ concurrency:
2323
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
2424
cancel-in-progress: true
2525

26+
permissions:
27+
contents: read
28+
2629
jobs:
2730
build:
2831
runs-on: ubuntu-22.04
2932

3033
steps:
31-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3235

3336
- name: Set up Node
3437
uses: actions/setup-node@v3

0 commit comments

Comments
 (0)