Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Test with Pester
run: ./test.ps1
- name: Invoke action
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build module docs
uses: ./
with:
Expand All @@ -56,7 +56,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# return string result
- name: Test that returned result string is not json serialized (act)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/demo-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
body: "[Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Get script text
uses: ./
id: get-script-text
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
body: "[Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event.client_payload.slash_command.args.named.ref }}
- name: Resolve version, tag and push
Expand Down
Loading