Skip to content

Commit

Permalink
chore(deps): bump actions/checkout from 4.1.2 to 4.2.0
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.2 to 4.2.0.
- [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.2.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Sep 26, 2024
1 parent 9e46568 commit 759e7fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-local-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Test local action without fixed version
steps:
- name: Checkout
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.2.0
- name: Test local action
id: local-action
uses: ./
Expand All @@ -25,7 +25,7 @@ jobs:
name: Test local action with fixed version
steps:
- name: Checkout
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.2.0
- name: Test local action
id: local-action
uses: ./
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
name: Test local action with upstream_remove_files set
steps:
- name: Checkout
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.2.0
- name: Test local action
id: local-action
uses: ./
Expand All @@ -79,7 +79,7 @@ jobs:
name: Test local action with upstream_copy set
steps:
- name: Checkout
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.2.0
- name: Test local action
id: local-action
uses: ./
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,23 +73,23 @@ runs:
echo "minor=${v[1]}" >> $GITHUB_OUTPUT
echo "patch=${v[2]}" >> $GITHUB_OUTPUT
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.2.0
name: Checkout latest version
if: ${{ inputs.upstream_ref == '' }}
with:
repository: ${{inputs.upstream_repo }}
ref: ${{ steps.check_last_tag.outputs.tag }}
path: 'upstream'

- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.2.0
name: Checkout the fixed version
if: ${{ inputs.upstream_ref != '' }}
with:
repository: ${{inputs.upstream_repo }}
ref: ${{ inputs.upstream_ref }}
path: 'upstream'

- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.2.0
name: Checkout local repo
with:
path: 'patch'
Expand Down

0 comments on commit 759e7fa

Please sign in to comment.