-
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.
Rolled back actions/checkout to 4.1.1 as github have withdrawn 4.1.2 …
…as it broke everything actions/checkout#1651
- Loading branch information
Showing
9 changed files
with
73 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,9 +40,10 @@ jobs: | |
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: "Check Repo Visibility" | ||
uses: credfeto/[email protected] | ||
|
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 |
---|---|---|
|
@@ -26,9 +26,10 @@ jobs: | |
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: "Check Repo Visibility" | ||
uses: credfeto/[email protected] | ||
|
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,10 +33,12 @@ jobs: | |
- name: "Ensure JQ is installed" | ||
shell: bash | ||
run: sudo apt install -y jq | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
ref: main | ||
repository: ${{github.repository}} | ||
|
||
|
@@ -67,10 +69,12 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
ref: main | ||
repository: ${{github.repository}} | ||
|
||
|
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 |
---|---|---|
|
@@ -41,9 +41,10 @@ jobs: | |
# shell: bash | ||
# run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
# - name: "Checkout Source" | ||
# uses: actions/[email protected].2 | ||
# uses: actions/[email protected].1 | ||
# with: | ||
# fetch-depth: 0 | ||
# fetch-tags: true | ||
# - if: |- | ||
# !endsWith(github.repository, '-template') | ||
# && !startsWith(github.head_ref, 'release/') | ||
|
@@ -60,14 +61,21 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
- if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
uses: actions/[email protected] | ||
|
||
- name: "Checkout Source" | ||
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
fetch-tags: true | ||
|
||
- name: "Diff Changes" | ||
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
shell: bash | ||
run: echo "CHANGES=$(git diff --exit-code --no-patch --merge-base origin/main CHANGELOG.md 2> /dev/null && echo 0 || echo $?)" >> "$GITHUB_ENV" | ||
- if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) && env.CHANGES == '0' | ||
|
||
- name: "Report unchanged" | ||
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) && env.CHANGES == '0' | ||
uses: actions/[email protected] | ||
with: | ||
script: | | ||
|
@@ -81,16 +89,20 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: "Get version from global.json" | ||
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
uses: credfeto/[email protected] | ||
with: | ||
file: src/global.json | ||
fallback: 8.0.* | ||
|
||
- name: "Install dotnet" | ||
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
uses: actions/[email protected] | ||
|
@@ -111,12 +123,14 @@ jobs: | |
7.0.* | ||
8.0.* | ||
${{env.DOTNET_VERSION}} | ||
- name: "Check Runner details" | ||
uses: actions/[email protected] | ||
with: | ||
script: | | ||
core.info('Name: ${{runner.name}}'); | ||
core.info('OS: ${{runner.os}}'); | ||
- name: "Enable Local nuget feeds if caching" | ||
if: startsWith(runner.name, 'buildagent-') | ||
id: nuget-local-cache | ||
|
@@ -127,6 +141,7 @@ jobs: | |
echo "PRERELEASE_BAGET_CACHE=${{vars.PRERELEASE_BAGET_CACHE}}" | ||
echo "RELEASE_BAGET_CACHE=${{vars.RELEASE_BAGET_CACHE}}" | ||
}>> "$GITHUB_OUTPUT" | ||
- name: "Configure nuget feeds" | ||
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
uses: ./.github/actions/nuget | ||
|
@@ -137,6 +152,7 @@ jobs: | |
NUGET_ADDITIONAL_RESTORE_FEED_PRERELEASE_CACHE: "" | ||
NUGET_ADDITIONAL_RESTORE_FEED_RELEASE: ${{vars.NUGET_ADDITIONAL_RESTORE_FEED_RELEASE}} | ||
NUGET_ADDITIONAL_RESTORE_FEED_PRERELEASE: "" | ||
|
||
- name: "Enable dotnet tools" | ||
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
shell: bash | ||
|
@@ -151,12 +167,14 @@ jobs: | |
DOTNET_TC_QuickJitForLoops: "1" | ||
DOTNET_TieredPGO: "1" | ||
MSBUILDTERMINALLOGGER: "auto" | ||
|
||
- name: "Install Changelog tool" | ||
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
uses: ./.github/actions/dotnet-tool | ||
with: | ||
TOOL_NAME: Credfeto.ChangeLog.Cmd | ||
TOOL_VERSION: latest | ||
|
||
- name: "Check Changelog" | ||
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) | ||
shell: bash | ||
|
@@ -179,10 +197,13 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: "Check for leaks" | ||
uses: DariuszPorowski/[email protected] | ||
id: gitleaks | ||
|
@@ -201,10 +222,13 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: "Check for merge conflicts" | ||
uses: olivernybroe/[email protected] | ||
|
||
|
@@ -215,10 +239,13 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: "Check for case conflicts" | ||
uses: credfeto/[email protected] | ||
|
||
|
@@ -229,10 +256,13 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: "Check for ignored files" | ||
uses: credfeto/[email protected] | ||
|
||
|
@@ -244,18 +274,22 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- uses: credfeto/[email protected] | ||
id: visibility | ||
with: | ||
# optional parameter defaults to the current repo | ||
repository: ${{github.repository}} | ||
# optional parameter defaults to the current user | ||
token: ${{github.token}} | ||
|
||
- name: "Checkout Source" | ||
if: steps.visibility.outputs.is_public == 'true' | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: 'Dependency Review' | ||
if: steps.visibility.outputs.is_public == 'true' | ||
uses: actions/[email protected] | ||
|
@@ -268,10 +302,13 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: "Check for merge commits" | ||
uses: greenled/[email protected] | ||
|
||
|
@@ -284,10 +321,13 @@ jobs: | |
- name: "Initialise Workspace" | ||
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: "Run Linter" | ||
uses: github/[email protected] | ||
env: | ||
|
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 |
---|---|---|
|
@@ -51,9 +51,10 @@ jobs: | |
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 1 | ||
fetch-tags: true | ||
|
||
- name: "Find PR For branch" | ||
uses: juliangruber/[email protected] | ||
|
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,9 +33,10 @@ jobs: | |
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
token: ${{secrets.SOURCE_PUSH_TOKEN}} | ||
|
||
- name: "Reformat" | ||
|
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 |
---|---|---|
|
@@ -34,9 +34,10 @@ jobs: | |
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
|
||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
token: ${{secrets.SOURCE_PUSH_TOKEN}} | ||
|
||
- name: "Reformat" | ||
|
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 |
---|---|---|
|
@@ -22,9 +22,10 @@ jobs: | |
shell: bash | ||
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE" | ||
- name: "Checkout Source" | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
token: ${{secrets.SOURCE_PUSH_TOKEN}} | ||
- name: "Update Github label config" | ||
if: success() | ||
|