Skip to content

Commit

Permalink
Merge pull request #340 from fflaten/update-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
f-bader authored Jul 14, 2024
2 parents bc788af + ac7d571 commit 6ac75f8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-validation-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: dorny/test-reporter@v1
with:
artifact: test-results
artifact: test-results-Windows
name: Maester Test Results
path: '*.xml'
reporter: java-junit
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
Expand Down Expand Up @@ -65,8 +65,8 @@ jobs:
# Run Pester tests on Windows PowerShell
./powershell/tests/pester.ps1
- uses: actions/upload-artifact@v3 # upload test results
- uses: actions/upload-artifact@v4 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
name: test-results-${{ runner.os }}
path: TestResults/*.xml
2 changes: 1 addition & 1 deletion .github/workflows/publish-module-manualversionupdate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: windows-latest

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

- name: Package ./tests to PowerShell module
id: package-tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-module-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: windows-latest

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

- name: Package ./tests to PowerShell module
id: package-tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: windows-latest

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

- name: Package ./tests to PowerShell module
id: package-tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Publish to maester-tests
id: push_directory
uses: cpina/github-action-push-to-another-repository@target-branch
Expand Down
2 changes: 0 additions & 2 deletions powershell/public/Connect-Maester.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,10 @@
Connects to Microsoft Graph with the ChannelMessage.Send scope.
.EXAMPLE
Connect-Maester -Privileged
Connects to Microsoft Graph with additional privileged scopes such as **RoleEligibilitySchedule.ReadWrite.Directory** that are required for querying global admin roles in Privileged Identity Management.
#>

Function Connect-Maester {
Expand Down

0 comments on commit 6ac75f8

Please sign in to comment.