Skip to content

Commit a18b40b

Browse files
Update Github Actions
1 parent fdeb4f5 commit a18b40b

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/deploy-module.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout Code
31-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
31+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
3232
with:
3333
fetch-depth: 0
3434
- name: Install GitVersion
@@ -55,11 +55,11 @@ jobs:
5555
needs: Build_Stage_Package_Module
5656
steps:
5757
- name: Checkout Code
58-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
58+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
5959
with:
6060
fetch-depth: 0
6161
- name: Download Build Artifact
62-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
62+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
6363
with:
6464
name: ${{ env.buildArtifactName }}
6565
path: ${{ env.buildFolderName }}
@@ -78,11 +78,11 @@ jobs:
7878
needs: Build_Stage_Package_Module
7979
steps:
8080
- name: Checkout Code
81-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
81+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
8282
with:
8383
fetch-depth: 0
8484
- name: Download Build Artifact
85-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
85+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
8686
with:
8787
name: ${{ env.buildArtifactName }}
8888
path: ${{ env.buildFolderName }}
@@ -101,11 +101,11 @@ jobs:
101101
needs: Build_Stage_Package_Module
102102
steps:
103103
- name: Checkout Code
104-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
104+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
105105
with:
106106
fetch-depth: 0
107107
- name: Download Build Artifact
108-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
108+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
109109
with:
110110
name: ${{ env.buildArtifactName }}
111111
path: ${{ env.buildFolderName }}
@@ -137,43 +137,43 @@ jobs:
137137
# with:
138138
# path: ${{ env.buildFolderName }}/${{ env.testResultFolderName }}/
139139
- name: Download Test Artifact macOS
140-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
140+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
141141
with:
142142
name: CodeCoverageMacOS
143143
path: ${{ env.buildFolderName }}/${{ env.testResultFolderName }}/CodeCoverageMacOS/
144144
- name: Download Test Artifact Linux
145-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
145+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
146146
with:
147147
name: CodeCoverageLinux
148148
path: ${{ env.buildFolderName }}/${{ env.testResultFolderName }}/CodeCoverageLinux/
149149
- name: Download Test Artifact Windows (PS7)
150-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
150+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
151151
with:
152152
name: CodeCoverageWinPS7
153153
path: ${{ env.buildFolderName }}/${{ env.testResultFolderName }}/CodeCoverageWinPS7/
154154
- name: Publish MacOs Test Results
155155
id: macos-test-results
156-
uses: EnricoMi/publish-unit-test-result-action@afb2984f4d89672b2f9d9c13ae23d53779671984 # v2
156+
uses: EnricoMi/publish-unit-test-result-action@3a74b2957438d0b6e2e61d67b05318aa25c9e6c6 # v2
157157
if: always()
158158
with:
159159
nunit_files: ${{ env.buildFolderName }}/${{ env.testResultFolderName }}/CodeCoverageMacOS/NUnit*.xml
160160
check_name: MacOs Test Results
161161
- name: Publish Linux Test Results
162162
id: linux-test-results
163-
uses: EnricoMi/publish-unit-test-result-action@afb2984f4d89672b2f9d9c13ae23d53779671984 # v2
163+
uses: EnricoMi/publish-unit-test-result-action@3a74b2957438d0b6e2e61d67b05318aa25c9e6c6 # v2
164164
if: always()
165165
with:
166166
nunit_files: ${{ env.buildFolderName }}/${{ env.testResultFolderName }}/CodeCoverageLinux/NUnit*.xml
167167
check_name: Linux Test Results
168168
- name: Publish WinPS71 Test Results
169169
id: winps71-test-results
170-
uses: EnricoMi/publish-unit-test-result-action@afb2984f4d89672b2f9d9c13ae23d53779671984 # v2
170+
uses: EnricoMi/publish-unit-test-result-action@3a74b2957438d0b6e2e61d67b05318aa25c9e6c6 # v2
171171
if: always()
172172
with:
173173
nunit_files: ${{ env.buildFolderName }}/${{ env.testResultFolderName }}/CodeCoverageWinPS7/NUnit*.xml
174174
check_name: WinPS71 Test Results
175175
- name: Upload coverage reports to Codecov
176-
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5.4.0
176+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
177177
with:
178178
token: ${{ secrets.CODECOV_TOKEN }}
179179
slug: CyberShell-App/CyberShell
@@ -189,11 +189,11 @@ jobs:
189189
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
190190
steps:
191191
- name: Checkout Code
192-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
192+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
193193
with:
194194
fetch-depth: 0
195195
- name: Download Build Artifact
196-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
196+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
197197
with:
198198
name: ${{ env.buildArtifactName }}
199199
path: ${{ env.buildFolderName }}

0 commit comments

Comments
 (0)