Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Run Pester
shell: pwsh
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Upload test results
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: test-results-${{ matrix.os }}
path: artifacts/test-results.xml
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install platyPS
shell: pwsh
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Generate step reference
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-auto-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Add label and assign issue
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const issueNumber = context.payload.issue.number;
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
# Always checkout the workflow ref (branch/tag selected in the UI or the pushed tag ref).
Expand Down Expand Up @@ -115,15 +115,15 @@ jobs:

- name: Upload workflow artifact (expanded folder)
if: ${{ inputs.publish_release != true && !startsWith(github.ref, 'refs/tags/v') }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: IdLE-${{ steps.tag.outputs.value }}-expanded
path: artifacts/staging-${{ steps.tag.outputs.value }}
if-no-files-found: error

- name: Upload workflow artifact (zip)
if: ${{ inputs.publish_release == true || startsWith(github.ref, 'refs/tags/v') }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: IdLE-${{ steps.tag.outputs.value }}-zip
path: artifacts/IdLE-${{ steps.tag.outputs.value }}.zip
Expand All @@ -147,7 +147,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref }}
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref }}
Expand Down