Skip to content

Commit 4e67445

Browse files
build(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2723ba1 commit 4e67445

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
runs-on: ${{ matrix.os }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Test with Pester
1919
run: ./test.ps1
2020
- name: Invoke action
@@ -43,7 +43,7 @@ jobs:
4343
build-docs:
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
- name: Build module docs
4848
uses: ./
4949
with:
@@ -56,7 +56,7 @@ jobs:
5656
os: [ubuntu-latest, macos-latest, windows-latest]
5757
runs-on: ${{ matrix.os }}
5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060

6161
# return string result
6262
- name: Test that returned result string is not json serialized (act)

.github/workflows/demo-command.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
2020
body: "[Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})"
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Get script text
2323
uses: ./
2424
id: get-script-text

.github/workflows/tag-command.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
1919
body: "[Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})"
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
ref: ${{ github.event.client_payload.slash_command.args.named.ref }}
2323
- name: Resolve version, tag and push

0 commit comments

Comments
 (0)