Skip to content

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #204

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/aks_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:
Write-Host ('::set-output name=osType::'+$osType);

- name: download tSQLtAndTests artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: tSQLtAndTests
path: "${{ github.workspace }}\\tSQLt\\Build_Artifact"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_and_test_on_spawn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ jobs:
Write-Host "✨ ✨ ✨ ✨ ✨ ✨ ✨ ✨ ✨ ✨ ";

- name: download tSQLtBuildArtifact artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: tSQLtBuildArtifact
path: "${{ github.workspace }}\\tSQLt\\Build\\output\\tSQLtBuild"
Expand Down Expand Up @@ -226,13 +226,13 @@ jobs:
path: tSQLt

- name: download tSQLtBuildArtifact artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: tSQLtBuildArtifact
path: "${{ github.workspace }}\\tSQLt\\Build\\output\\tSQLtBuild"

- name: download tSQLt dacpac artifact(s)
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: dacpacs
path: "${{ github.workspace }}\\tSQLt\\Build\\output\\DacpacBuild"
Expand Down Expand Up @@ -290,13 +290,13 @@ jobs:
path: tSQLt

- name: download public tSQLt artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: tSQLtPublic
path: "${{ github.workspace }}\\tSQLt\\Build\\output\\tSQLt\\public"

- name: download validation tSQLt artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: tSQLtValidation
path: "${{ github.workspace }}\\tSQLt\\Build\\output\\tSQLt\\validation"
Expand Down