-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
- Loading branch information
Showing
17 changed files
with
30 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,13 +64,13 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
cache: maven | ||
- name: Restore Local Maven Cache | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{runner.os}}-m2 | ||
|
@@ -153,7 +153,7 @@ jobs: | |
bt-param: '-fae -B -e -Dtesting=solo -T 1C' | ||
version: ${{ github.sha }} | ||
- name: Test Reporting | ||
if: always() && github.actor != 'dependabot[bot]' | ||
if: always() | ||
id: test-report | ||
uses: phoenix-actions/test-reporting@v12 | ||
with: | ||
|
@@ -193,7 +193,7 @@ jobs: | |
with: | ||
path: ${{github.workspace}}/artifacts/ | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
@@ -205,7 +205,7 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Restore Local Maven Cache | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-maven-${{github.sha}}.${{github.run_number}} | ||
|
@@ -225,13 +225,13 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
cache: maven | ||
- name: Restore Local Maven Cache | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{runner.os}}-m2 | ||
|
@@ -240,7 +240,6 @@ jobs: | |
|
||
labels: | ||
name: Pull Request Labels | ||
if: github.actor != 'dependabot[bot]' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Label Pull Request | ||
|
@@ -257,13 +256,13 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
distribution: zulu | ||
java-version: 11 | ||
cache: maven | ||
- name: Restore Local Maven Cache | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{runner.os}}-m2 | ||
|
@@ -287,7 +286,7 @@ jobs: | |
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const result = await github.rest.repos.listReleases({ | ||
const result = await github.action.repos.listReleases({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo | ||
}) | ||
|
@@ -296,7 +295,7 @@ jobs: | |
for(var key in data){ | ||
if(data[key].tag_name == "v${{ needs.getVersion.outputs.buildNumber }}" && data[key].draft == true) | ||
{ | ||
github.rest.repos.updateRelease({ | ||
github.action.repos.updateRelease({ | ||
release_id: data[key].id, | ||
"draft": false, | ||
owner: context.repo.owner, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,11 +38,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
java-version: 17 | ||
- name: Maven Cache | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{runner.os}}-m2 | ||
|
@@ -96,11 +96,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
java-version: 17 | ||
- name: Maven Cache | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{runner.os}}-m2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,11 +33,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK ${{env.JDK}} | ||
uses: actions/setup-java@v3.13.0 | ||
uses: actions/setup-java@v4.2.1 | ||
with: | ||
java-version: ${{env.JDK}} | ||
- name: Maven Cache | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{runner.os}}-m2 | ||
|
@@ -88,11 +88,11 @@ jobs: | |
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - name: Set up JDK ${{env.JDK}} | ||
# uses: actions/setup-java@v3.13.0 | ||
# uses: actions/setup-java@v4.2.1 | ||
# with: | ||
# java-version: ${{env.JDK}} | ||
# - name: Maven Cache | ||
# uses: actions/[email protected].1 | ||
# uses: actions/[email protected].2 | ||
# with: | ||
# path: ~/.m2 | ||
# key: ${{runner.os}}-m2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -526,3 +526,4 @@ MigrationBackup/ | |
FodyWeavers.xsd | ||
|
||
*.zip | ||
.DS_Store |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters