Skip to content

Commit de0ab7f

Browse files
build: upgraded action tasks to v3 because of deprication
1 parent e8be72c commit de0ab7f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/actions-pipeline.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
checks: write
3535
steps:
3636
- name: Clone repo
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838

3939
- name: .NET Restore
4040
shell: pwsh
@@ -120,21 +120,21 @@ jobs:
120120
121121
- name: Publish Module
122122
if: ${{ matrix.os == 'windows-latest' && github.event_name != 'pull_request' }}
123-
uses: actions/upload-artifact@v2
123+
uses: actions/upload-artifact@v3
124124
with:
125125
name: module
126126
path: "./staging/VSTeam"
127127

128128
- name: Publish unit tests
129129
if: ${{ matrix.os == 'windows-latest' && github.event_name != 'pull_request' }}
130-
uses: actions/upload-artifact@v2
130+
uses: actions/upload-artifact@v3
131131
with:
132132
name: test
133133
path: "./staging/test"
134134

135135
- name: Publish pipeline scripts
136136
if: ${{ matrix.os == 'windows-latest' && github.event_name != 'pull_request' }}
137-
uses: actions/upload-artifact@v2
137+
uses: actions/upload-artifact@v3
138138
with:
139139
name: pipeline-scripts
140140
path: "./staging/tools"
@@ -178,7 +178,7 @@ jobs:
178178
working-directory: './tools/scripts'
179179

180180
- name: Upload nuget package as artifact
181-
uses: actions/upload-artifact@v2
181+
uses: actions/upload-artifact@v3
182182
with:
183183
name: VSTeamPackage
184184
path: ./dist/*.nupkg

0 commit comments

Comments
 (0)