Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and kaiehrhardt committed Oct 12, 2023
1 parent 1b171d4 commit 41f4821
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
pull-requests: write
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ssh-key: "${{ secrets.COMMIT_KEY }}"
- name: Semantic Release
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ runs:
using: "composite"
steps:
- name: checkout with github token
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout-deploy-key == '' }}

- name: checkout with deploy key
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ssh-key: "${{ inputs.checkout-deploy-key }}"
if: ${{ inputs.checkout-deploy-key != '' }}
Expand Down

0 comments on commit 41f4821

Please sign in to comment.