Skip to content

Commit

Permalink
build: upgraded action tasks to v3 because of deprication
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianSchuetze authored Apr 18, 2023
1 parent e8be72c commit de0ab7f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/actions-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
checks: write
steps:
- name: Clone repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: .NET Restore
shell: pwsh
Expand Down Expand Up @@ -120,21 +120,21 @@ jobs:
- name: Publish Module
if: ${{ matrix.os == 'windows-latest' && github.event_name != 'pull_request' }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: module
path: "./staging/VSTeam"

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

- name: Publish pipeline scripts
if: ${{ matrix.os == 'windows-latest' && github.event_name != 'pull_request' }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: pipeline-scripts
path: "./staging/tools"
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
working-directory: './tools/scripts'

- name: Upload nuget package as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: VSTeamPackage
path: ./dist/*.nupkg
Expand Down

0 comments on commit de0ab7f

Please sign in to comment.