File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9090
9191 # Define test configurations as an array of hashtables.
9292 $osConfigs = @(
93- @{ RunsOn = 'ubuntu-latest'; OSName = 'Linux' }
94- @{ RunsOn = 'macos-latest'; OSName = 'macOS' }
95- @{ RunsOn = 'windows-latest'; OSName = 'Windows' }
93+ [PSCustomObject] @{ RunsOn = 'ubuntu-latest'; OSName = 'Linux' }
94+ [PSCustomObject] @{ RunsOn = 'macos-latest'; OSName = 'macOS' }
95+ [PSCustomObject] @{ RunsOn = 'windows-latest'; OSName = 'Windows' }
9696 ) | Where-Object { $skipTests -notcontains $_.OSName }
9797
9898 if (-not $osConfigs) {
Original file line number Diff line number Diff line change 8787 runs-on : ${{ inputs.RunsOn }}
8888 steps :
8989 - name : Checkout repository
90- uses : actions/checkout@v3
90+ uses : actions/checkout@v4
9191
9292 - name : Download module artifact
9393 uses : actions/download-artifact@v4
You can’t perform that action at this time.
0 commit comments