Skip to content

Commit a4481a0

Browse files
authored
Merge pull request #238 from compose-generator/release/v1.6.x
Release of version 1.6.0
2 parents 0fb69df + f0bac99 commit a4481a0

File tree

624 files changed

+105919
-15750
lines changed

Some content is hidden

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

624 files changed

+105919
-15750
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updates:
88
time: "04:00"
99
timezone: Europe/Berlin
1010
open-pull-requests-limit: 15
11-
target-branch: release/v1.6.x
11+
target-branch: release/v1.7.x
1212
reviewers:
1313
- compose-generator/compiler-team
1414
assignees:
@@ -22,7 +22,7 @@ updates:
2222
time: "04:00"
2323
timezone: Europe/Berlin
2424
open-pull-requests-limit: 15
25-
target-branch: release/v1.6.x
25+
target-branch: release/v1.7.x
2626
reviewers:
2727
- compose-generator/compiler-team
2828
assignees:
@@ -36,7 +36,7 @@ updates:
3636
time: "04:00"
3737
timezone: Europe/Berlin
3838
open-pull-requests-limit: 15
39-
target-branch: release/v1.6.x
39+
target-branch: release/v1.7.x
4040
reviewers:
4141
- compose-generator/compiler-team
4242
assignees:
@@ -50,7 +50,7 @@ updates:
5050
time: "04:00"
5151
timezone: Europe/Berlin
5252
open-pull-requests-limit: 15
53-
target-branch: release/v1.6.x
53+
target-branch: release/v1.7.x
5454
reviewers:
5555
- compose-generator/compiler-team
5656
assignees:

.github/workflows/ci-cpp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Prepare environment
1919
run: |
@@ -26,8 +26,8 @@ jobs:
2626
run: |
2727
mkdir -p ./lib/json
2828
cd lib
29-
git clone https://github.com/google/googletest.git
30-
curl -sSL "https://github.com/nlohmann/json/releases/download/v3.11.2/json.hpp" --output json/json.hpp
29+
git clone --depth 1 --branch v1.15.2 https://github.com/google/googletest.git
30+
curl -sSL "https://github.com/nlohmann/json/releases/download/v3.11.3/json.hpp" --output json/json.hpp
3131
3232
- name: Build project
3333
uses: nicledomaS/[email protected]

.github/workflows/ci-go.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,23 @@ jobs:
1313
strategy:
1414
matrix:
1515
go-version:
16-
- 1.18.x
17-
- 1.19.x
16+
- 1.23.x
1817
os:
1918
- ubuntu-latest
2019
- windows-latest
2120
runs-on: ${{ matrix.os }}
2221

2322
steps:
2423
- name: Install Go
25-
uses: actions/setup-go@v3
24+
uses: actions/setup-go@v5
2625
with:
2726
go-version: ${{ matrix.go-version }}
2827

2928
- name: Prepare environment
3029
run: go install golang.org/x/lint/golint@latest
3130

3231
- name: Checkout code
33-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3433

3534
- name: Run vet & lint
3635
working-directory: cli
@@ -41,14 +40,14 @@ jobs:
4140
- name: Run build
4241
working-directory: cli
4342
run: go build -x
44-
43+
4544
- name: Run tests
4645
working-directory: cli
4746
run: go test ./...
4847

4948
- name: Install GoSec
5049
shell: bash
51-
run: curl -sfL https://raw.githubusercontent.com/securego/gosec/v2.13.1/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.13.1
50+
run: curl -sfL https://raw.githubusercontent.com/securego/gosec/v2.20.0/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.20.0
5251

5352
- name: Run security scan
5453
working-directory: cli

.github/workflows/ci-java.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Set up JDK 15
22-
uses: actions/setup-java@v3
22+
uses: actions/setup-java@v4
2323
with:
2424
java-version: 15
2525
distribution: adopt
2626

2727
- name: Cache Maven packages
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: ~./m2
3131
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/codeql-analysis.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ jobs:
1313
fail-fast: false
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Initialize CodeQL
19-
uses: github/codeql-action/init@v2
19+
uses: github/codeql-action/init@v3
2020
with:
2121
languages: go
2222

2323
- name: Autobuild
24-
uses: github/codeql-action/autobuild@v2
24+
uses: github/codeql-action/autobuild@v3
2525

2626
- name: Perform CodeQL Analysis
27-
uses: github/codeql-action/analyze@v2
27+
uses: github/codeql-action/analyze@v3
2828

2929
analyze-cpp:
3030
name: Analyze C++ Code
@@ -33,10 +33,10 @@ jobs:
3333
fail-fast: false
3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

3838
- name: Initialize CodeQL
39-
uses: github/codeql-action/init@v2
39+
uses: github/codeql-action/init@v3
4040
with:
4141
languages: cpp
4242

@@ -63,7 +63,7 @@ jobs:
6363
unit_test_build: -Dtest=ON
6464

6565
- name: Perform CodeQL Analysis
66-
uses: github/codeql-action/analyze@v2
66+
uses: github/codeql-action/analyze@v3
6767

6868
analyze-java:
6969
name: Analyze Java Code
@@ -72,15 +72,15 @@ jobs:
7272
fail-fast: false
7373
steps:
7474
- name: Checkout repository
75-
uses: actions/checkout@v3
75+
uses: actions/checkout@v4
7676

7777
- name: Initialize CodeQL
78-
uses: github/codeql-action/init@v2
78+
uses: github/codeql-action/init@v3
7979
with:
8080
languages: java
8181

8282
- name: Set up JDK 15
83-
uses: actions/setup-java@v3
83+
uses: actions/setup-java@v4
8484
with:
8585
java-version: 15
8686
distribution: adopt
@@ -90,4 +90,4 @@ jobs:
9090
run: mvn verify --batch-mode --update-snapshots --quiet --no-transfer-progress
9191

9292
- name: Perform CodeQL Analysis
93-
uses: github/codeql-action/analyze@v2
93+
uses: github/codeql-action/analyze@v3

.github/workflows/copyright.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Get branch name
2121
id: vars
@@ -24,13 +24,13 @@ jobs:
2424
- name: Check Copyright
2525
uses: VinnyBabuManjaly/[email protected]
2626
with:
27-
CopyrightString: '/*\nCopyright © 2021-2022 Compose Generator Contributors\nAll rights reserved.\n*/\n\n'
27+
CopyrightString: '/*\nCopyright © 2021-2023 Compose Generator Contributors\nAll rights reserved.\n*/\n\n'
2828
Path: 'cli, compiler'
2929
IgnorePath: 'cli/vendor, compiler/cpp/test/test-files, compiler/java/src/test'
3030
FileType: '.go, .cpp, .h, .java'
3131

3232
- name: Create Pull Request
33-
uses: peter-evans/create-pull-request@v4
33+
uses: peter-evans/create-pull-request@v7
3434
with:
3535
token: ${{ secrets.GITHUB_TOKEN }}
3636
base: ${{ steps.vars.outputs.short_ref }}

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Setup Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: 3.x
2626

.github/workflows/misspell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Misspell
2020
uses: reviewdog/action-misspell@v1

0 commit comments

Comments
 (0)