Skip to content

Commit 4b14ca4

Browse files
authored
Merge branch 'main' into ghi8635_listEncryptedVolumes
2 parents e1eeca8 + b93a86c commit 4b14ca4

860 files changed

Lines changed: 38204 additions & 7389 deletions

File tree

Some content is hidden

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

.asf.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ github:
5151

5252
collaborators:
5353
- acs-robot
54-
- kiranchavala
5554
- rajujith
56-
- vishesh92
5755
- GaOrtiga
5856
- SadiJr
5957
- winterhazel
60-
- rp-
58+
- gpordeus
59+
- hsato03
60+
- bernardodemarco
6161

6262
protected_branches: ~
6363

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4
3434

3535
- name: Set up JDK 11
36-
uses: actions/setup-java@v3
36+
uses: actions/setup-java@v4
3737
with:
3838
java-version: '11'
3939
distribution: 'adopt'

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ jobs:
179179
"component/test_project_usage
180180
component/test_protocol_number_security_group
181181
component/test_public_ip
182-
component/test_resource_limits",
182+
component/test_resource_limits
183+
component/test_resource_limit_tags",
183184
"component/test_regions_accounts
184185
component/test_routers
185186
component/test_snapshots
@@ -210,7 +211,7 @@ jobs:
210211
fetch-depth: 0
211212

212213
- name: Set up JDK
213-
uses: actions/setup-java@v3
214+
uses: actions/setup-java@v4
214215
with:
215216
java-version: '11'
216217
distribution: 'adopt'
@@ -312,10 +313,11 @@ jobs:
312313
echo -e "Simulator CI Test Results: (only failures listed)\n"
313314
python3 ./tools/marvin/xunit-reader.py integration-test-results/
314315
315-
- uses: codecov/codecov-action@v3
316+
- uses: codecov/codecov-action@v4
316317
with:
317318
files: jacoco-coverage.xml
318319
fail_ci_if_error: true
319320
flags: simulator-marvin-tests
320321
verbose: true
321322
name: codecov
323+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/codecov.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fetch-depth: 0
3838

3939
- name: Set up JDK11
40-
uses: actions/setup-java@v3
40+
uses: actions/setup-java@v4
4141
with:
4242
distribution: 'temurin'
4343
java-version: '11'
@@ -49,10 +49,11 @@ jobs:
4949
cd nonoss && bash -x install-non-oss.sh && cd ..
5050
mvn -P quality -Dsimulator -Dnoredist clean install -T$(nproc)
5151
52-
- uses: codecov/codecov-action@v3
52+
- uses: codecov/codecov-action@v4
5353
with:
5454
files: ./client/target/site/jacoco-aggregate/jacoco.xml
5555
fail_ci_if_error: true
56-
flags: unit-tests
56+
flags: unittests
5757
verbose: true
5858
name: codecov
59+
token: ${{ secrets.CODECOV_TOKEN }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fetch-depth: 0
3838

3939
- name: Set up JDK11
40-
uses: actions/setup-java@v3
40+
uses: actions/setup-java@v4
4141
with:
4242
distribution: 'temurin'
4343
java-version: '11'

.github/workflows/rat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v4
3434
- name: Set up JDK 11
35-
uses: actions/setup-java@v3
35+
uses: actions/setup-java@v4
3636
with:
3737
java-version: '11'
3838
distribution: 'adopt'

.github/workflows/sonar-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fetch-depth: 0
4040

4141
- name: Set up JDK11
42-
uses: actions/setup-java@v3
42+
uses: actions/setup-java@v4
4343
with:
4444
distribution: 'temurin'
4545
java-version: '11'

.github/workflows/ui.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ jobs:
5555
npm run lint
5656
npm run test:unit
5757
58-
- uses: codecov/codecov-action@v3
58+
- uses: codecov/codecov-action@v4
5959
with:
6060
working-directory: ui
6161
files: ./coverage/lcov.info
6262
fail_ci_if_error: true
6363
flags: uitests
6464
verbose: true
6565
name: codecov
66+
token: ${{ secrets.CODECOV_TOKEN }}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ repos:
2626
- id: identity
2727
- id: check-hooks-apply
2828
- repo: https://github.com/pre-commit/pre-commit-hooks
29-
rev: v4.4.0
29+
rev: v4.6.0
3030
hooks:
3131
#- id: check-added-large-files
3232
- id: check-case-conflict
@@ -57,7 +57,7 @@ repos:
5757
exclude: \.(cs|xml)$
5858
# - id: trailing-whitespace
5959
- repo: https://github.com/pycqa/flake8
60-
rev: 6.1.0
60+
rev: 7.0.0
6161
hooks:
6262
- id: flake8
6363
args: [--config, .github/linters/.flake8]

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ was tested against a CentOS 7 x86_64 setup.
1515

1616
Install tools and dependencies used for development:
1717

18-
# yum -y install git java-11-openjdk java-11-openjdk-devel \
18+
# yum -y install git java-17-openjdk java-17-openjdk-devel \
1919
mysql mysql-server mkisofs git gcc python MySQL-python openssh-clients wget
2020

2121
Set up Maven (3.6.0):

0 commit comments

Comments
 (0)