-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updates actions to the latest minor versions - Don't rely on the fetch-tags input of the checkout action. It doesn't actually fetch tags. - Don't persist git credentials when we don't need to - Resolve other minor lint issues
- Loading branch information
Showing
6 changed files
with
85 additions
and
62 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 |
---|---|---|
|
@@ -48,21 +48,23 @@ jobs: | |
run: rm -rf "$GITHUB_WORKSPACE/*" | ||
|
||
- name: Checkout workflow ref | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
fetch-depth: 1 | ||
show-progress: 'false' | ||
show-progress: false | ||
path: workflow | ||
persist-credentials: false | ||
|
||
- name: Checkout ref | ||
id: checkout-ref | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
fetch-depth: 1 | ||
fetch-tags: 'true' | ||
show-progress: 'false' | ||
fetch-tags: true | ||
show-progress: false | ||
ref: ${{ matrix.ref }} | ||
path: python-minifier | ||
persist-credentials: false | ||
|
||
- name: Run tests | ||
uses: dflook/run-in-container@main | ||
|
@@ -106,31 +108,34 @@ jobs: | |
run: rm -rf "$GITHUB_WORKSPACE/*" | ||
|
||
- name: Checkout workflow ref | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: workflow | ||
fetch-depth: 1 | ||
show-progress: 'false' | ||
show-progress: false | ||
persist-credentials: false | ||
|
||
- name: Checkout ref | ||
id: ref | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
ref: ${{ inputs.ref }} | ||
path: python-minifier | ||
fetch-depth: 1 | ||
fetch-tags: 'true' | ||
show-progress: 'false' | ||
fetch-tags: true | ||
show-progress: false | ||
persist-credentials: false | ||
|
||
- name: Checkout base ref | ||
id: base-ref | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
ref: ${{ inputs.base-ref }} | ||
path: python-minifier-base | ||
fetch-depth: 1 | ||
fetch-tags: 'true' | ||
show-progress: 'false' | ||
fetch-tags: true | ||
show-progress: false | ||
persist-credentials: false | ||
|
||
- name: Generate Report | ||
uses: dflook/run-in-container@main | ||
|
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