-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): bump actions/checkout from 4.1.2 to 4.1.7
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.2 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.2...v4.1.7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
9e46568
commit 98b8646
Showing
2 changed files
with
7 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ jobs: | |
name: Test local action without fixed version | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].7 | ||
- name: Test local action | ||
id: local-action | ||
uses: ./ | ||
|
@@ -25,7 +25,7 @@ jobs: | |
name: Test local action with fixed version | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].7 | ||
- name: Test local action | ||
id: local-action | ||
uses: ./ | ||
|
@@ -57,7 +57,7 @@ jobs: | |
name: Test local action with upstream_remove_files set | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].7 | ||
- name: Test local action | ||
id: local-action | ||
uses: ./ | ||
|
@@ -79,7 +79,7 @@ jobs: | |
name: Test local action with upstream_copy set | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].7 | ||
- name: Test local action | ||
id: local-action | ||
uses: ./ | ||
|
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 |
---|---|---|
|
@@ -73,23 +73,23 @@ runs: | |
echo "minor=${v[1]}" >> $GITHUB_OUTPUT | ||
echo "patch=${v[2]}" >> $GITHUB_OUTPUT | ||
- uses: actions/[email protected].2 | ||
- uses: actions/[email protected].7 | ||
name: Checkout latest version | ||
if: ${{ inputs.upstream_ref == '' }} | ||
with: | ||
repository: ${{inputs.upstream_repo }} | ||
ref: ${{ steps.check_last_tag.outputs.tag }} | ||
path: 'upstream' | ||
|
||
- uses: actions/[email protected].2 | ||
- uses: actions/[email protected].7 | ||
name: Checkout the fixed version | ||
if: ${{ inputs.upstream_ref != '' }} | ||
with: | ||
repository: ${{inputs.upstream_repo }} | ||
ref: ${{ inputs.upstream_ref }} | ||
path: 'upstream' | ||
|
||
- uses: actions/[email protected].2 | ||
- uses: actions/[email protected].7 | ||
name: Checkout local repo | ||
with: | ||
path: 'patch' | ||
|