Skip to content

Commit b7de6e9

Browse files
Reviewing Github Actions and update references
1 parent e18b9c3 commit b7de6e9

16 files changed

+31
-23
lines changed
File renamed without changes.
File renamed without changes.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737

3838
setup:
3939
name: Setup
40-
uses: WarehouseFinds/PSScriptModule/.github/workflows/powershell-script-module-cache-dependencies.yml@main
40+
uses: .github/workflows/ps-resolve-dependencies.yml
4141

4242
unit-tests:
4343
name: Unit Tests
4444
needs: [setup]
45-
uses: WarehouseFinds/PSScriptModule/.github/workflows/powershell-script-module-analysis-unit-tests.yml@main
45+
uses: .github/workflows/ps-analysis-unit-tests.yml
4646
permissions:
4747
issues: write
4848
pull-requests: write
@@ -53,7 +53,7 @@ jobs:
5353
static-code-analysis:
5454
name: Static Code Analysis
5555
needs: [setup]
56-
uses: WarehouseFinds/PSScriptModule/.github/workflows/powershell-script-module-analysis-static-code.yml@main
56+
uses: .github/workflows/ps-analysis-static-code.yml
5757
permissions:
5858
issues: write
5959
pull-requests: write
@@ -64,7 +64,7 @@ jobs:
6464
code-injection:
6565
name: Code Injection
6666
needs: [setup]
67-
uses: WarehouseFinds/PSScriptModule/.github/workflows/powershell-script-module-analysis-code-injection.yml@main
67+
uses: .github/workflows/ps-analysis-code-injection.yml
6868
permissions:
6969
issues: write
7070
pull-requests: write
@@ -75,7 +75,7 @@ jobs:
7575
semantic-code-analysis:
7676
name: Semantic Code Analysis
7777
needs: [setup]
78-
uses: WarehouseFinds/PSScriptModule/.github/workflows/powershell-script-module-analysis-codeQL.yml@main
78+
uses: .github/workflows/ps-analysis-codeQL.yml
7979
permissions:
8080
security-events: write
8181
actions: read
@@ -85,7 +85,7 @@ jobs:
8585
build:
8686
name: Build
8787
needs: [setup, unit-tests, static-code-analysis, code-injection, semantic-code-analysis]
88-
uses: WarehouseFinds/PSScriptModule/.github/workflows/powershell-script-module-build.yml@main
88+
uses: .github/workflows/ps-build.yml
8989
permissions:
9090
contents: write
9191
with:
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ on:
2727
jobs:
2828
setup:
2929
name: Setup
30-
uses: WarehouseFinds/PSScriptModule/.github/workflows/powershell-script-module-cache-dependencies.yml@main
30+
uses: .github/workflows/ps-resolve-dependencies.yml
3131

3232
build:
3333
name: Build
3434
needs: [setup]
35-
uses: WarehouseFinds/PSScriptModule/.github/workflows/powershell-script-module-build.yml@main
35+
uses: .github/workflows/ps-build.yml
3636
permissions:
3737
contents: write
3838
with:
@@ -42,7 +42,7 @@ jobs:
4242
release:
4343
name: Release
4444
needs: [setup, build]
45-
uses: WarehouseFinds/PSScriptModule/.github/workflows/powershell-script-module-release.yml@main
45+
uses: .github/workflows/ps-release.yml
4646
permissions:
4747
contents: write
4848
with:

.github/workflows/powershell-script-module-analysis-code-injection.yml renamed to .github/workflows/ps-analysis-code-injection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: '[template] PS Code Injection Analysis'
1+
name: 'PS Code Injection Analysis'
22
on:
33
workflow_call:
44
inputs:

.github/workflows/powershell-script-module-analysis-codeQL.yml renamed to .github/workflows/ps-analysis-codeQL.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: '[template] PS CodeQL Analysis'
1+
name: 'PS CodeQL Analysis'
22
run-name: "${{ github.event.repository.name }} | PS CodeQL Analysis | ${{ github.run_id }} | ${{ github.event_name }}"
33
on:
44
workflow_call:

.github/workflows/powershell-script-module-analysis-static-code.yml renamed to .github/workflows/ps-analysis-static-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: '[template] PS Static Code Analysis'
1+
name: 'PS Static Code Analysis'
22
on:
33
workflow_call:
44
inputs:

.github/workflows/powershell-script-module-analysis-unit-tests.yml renamed to .github/workflows/ps-analysis-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: '[template] PS Unit Tests'
1+
name: 'PS Unit Tests'
22
on:
33
workflow_call:
44
inputs:

.github/workflows/powershell-script-module-build.yml renamed to .github/workflows/ps-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: '[template] PS Build'
1+
name: 'PS Build'
22
on:
33
workflow_call:
44
inputs:

0 commit comments

Comments
 (0)