Skip to content

Commit a658e68

Browse files
authored
Merge branch 'main' into build/add_spotless_for_autoformatting
2 parents 35aad9b + f1817d8 commit a658e68

File tree

71 files changed

+3175
-810
lines changed

Some content is hidden

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

71 files changed

+3175
-810
lines changed

.github/workflows/lint-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
name: Validate PR title
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: amannn/action-semantic-pull-request@80c0371c57c5142ed6c844270bba1864bac8a4c6
21+
- uses: amannn/action-semantic-pull-request@40166f00814508ec3201fc8595b393d451c8cd80
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/merge.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc
23+
- uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb
2424
- name: Set up JDK 8
25-
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88
25+
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b
2626
with:
2727
java-version: '8'
2828
distribution: 'temurin'
@@ -32,7 +32,7 @@ jobs:
3232
server-password: ${{ secrets.OSSRH_PASSWORD }}
3333

3434
- name: Cache local Maven repository
35-
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d
35+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
3636
with:
3737
path: ~/.m2/repository
3838
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -49,7 +49,7 @@ jobs:
4949
run: mvn --batch-mode --update-snapshots verify
5050

5151
- name: Upload coverage to Codecov
52-
uses: codecov/codecov-action@v4.5.0
52+
uses: codecov/codecov-action@v5.1.2
5353
with:
5454
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
5555
flags: unittests # optional

.github/workflows/pullrequest.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out the code
13-
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc
13+
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb
1414

1515
- name: Set up JDK 8
16-
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88
16+
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b
1717
with:
1818
java-version: '8'
1919
distribution: 'temurin'
2020
cache: maven
2121

2222
- name: Initialize CodeQL
23-
uses: github/codeql-action/init@d8b1697e9a833a1f8cd88c642a6bd8685d3ee856
23+
uses: github/codeql-action/init@5b6e617dc0241b2d60c2bccea90c56b67eceb797
2424
with:
2525
languages: java
2626

2727
- name: Cache local Maven repository
28-
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d
28+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
2929
with:
3030
path: ~/.m2/repository
3131
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -36,7 +36,7 @@ jobs:
3636
run: mvn --batch-mode --update-snapshots --activate-profiles e2e verify
3737

3838
- name: Upload coverage to Codecov
39-
uses: codecov/codecov-action@v4.5.0
39+
uses: codecov/codecov-action@v5.1.2
4040
with:
4141
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
4242
flags: unittests # optional
@@ -45,4 +45,4 @@ jobs:
4545
verbose: true # optional (default = false)
4646

4747
- name: Perform CodeQL Analysis
48-
uses: github/codeql-action/analyze@d8b1697e9a833a1f8cd88c642a6bd8685d3ee856
48+
uses: github/codeql-action/analyze@5b6e617dc0241b2d60c2bccea90c56b67eceb797

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
# These steps are only run if this was a merged release-please PR
2929
- name: checkout
3030
if: ${{ steps.release.outputs.release_created }}
31-
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc
31+
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb
3232
- name: Set up JDK 8
3333
if: ${{ steps.release.outputs.release_created }}
34-
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88
34+
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b
3535
with:
3636
java-version: '8'
3737
distribution: 'temurin'

.github/workflows/static-code-scanning.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ jobs:
2929

3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc
32+
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb
3333

3434
# Initializes the CodeQL tools for scanning.
3535
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@d8b1697e9a833a1f8cd88c642a6bd8685d3ee856
36+
uses: github/codeql-action/init@5b6e617dc0241b2d60c2bccea90c56b67eceb797
3737
with:
3838
languages: java
3939

4040
- name: Autobuild
41-
uses: github/codeql-action/autobuild@d8b1697e9a833a1f8cd88c642a6bd8685d3ee856
41+
uses: github/codeql-action/autobuild@5b6e617dc0241b2d60c2bccea90c56b67eceb797
4242

4343
- name: Perform CodeQL Analysis
44-
uses: github/codeql-action/analyze@d8b1697e9a833a1f8cd88c642a6bd8685d3ee856
44+
uses: github/codeql-action/analyze@5b6e617dc0241b2d60c2bccea90c56b67eceb797

.gitmodules

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "test-harness"]
2-
path = test-harness
3-
url = https://github.com/open-feature/test-harness
1+
[submodule "spec"]
2+
path = spec
3+
url = https://github.com/open-feature/spec/
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
wrapperVersion=3.3.2
18+
distributionType=only-script
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"1.10.0"}
1+
{".":"1.13.0"}

0 commit comments

Comments
 (0)