Skip to content

Commit 41f4821

Browse files
dependabot[bot]kaiehrhardt
authored andcommitted
build(deps): bump actions/checkout from 3 to 4
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] <support@github.com>
1 parent 1b171d4 commit 41f4821

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414
steps:
1515
- name: checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
ssh-key: "${{ secrets.COMMIT_KEY }}"
1919
- name: Semantic Release

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ runs:
2828
using: "composite"
2929
steps:
3030
- name: checkout with github token
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
if: ${{ inputs.checkout-deploy-key == '' }}
3333

3434
- name: checkout with deploy key
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
ssh-key: "${{ inputs.checkout-deploy-key }}"
3838
if: ${{ inputs.checkout-deploy-key != '' }}

0 commit comments

Comments
 (0)