Skip to content

Commit 40f9db6

Browse files
Merge pull request #10 from 304NotModified/update-publish
Update to actions/download-artifact@v3
2 parents 0814e17 + 6beffee commit 40f9db6

10 files changed

+20
-11
lines changed

.github/workflows/reqnroll.actions.android.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ jobs:
6868
# Authenticates packages to push to nuget.org.
6969
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
7070
- name: Download a single artifact
71-
uses: actions/download-artifact@v2
71+
uses: actions/download-artifact@v3
7272
with:
7373
name: NuGet-Package
74+
path: NuGet-Package
7475
- uses: actions/setup-dotnet@v1
7576
with:
7677
dotnet-version: '6.0.x'

.github/workflows/reqnroll.actions.appium.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,10 @@ jobs:
5757
# Authenticates packages to push to nuget.org.
5858
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
5959
- name: Download a single artifact
60-
uses: actions/download-artifact@v2
60+
uses: actions/download-artifact@v3
6161
with:
6262
name: NuGet-Package
63+
path: NuGet-Package
6364
- uses: actions/setup-dotnet@v1
6465
with:
6566
dotnet-version: '6.0.x'

.github/workflows/reqnroll.actions.boaconstrictor.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@ jobs:
6161
# Authenticates packages to push to nuget.org.
6262
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
6363
- name: Download a single artifact
64-
uses: actions/download-artifact@v2
64+
uses: actions/download-artifact@v3
6565
with:
6666
name: NuGet-Package
67+
path: NuGet-Package
6768
- uses: actions/setup-dotnet@v1
6869
with:
6970
dotnet-version: '6.0.x'

.github/workflows/reqnroll.actions.browserstack.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,10 @@ jobs:
6565
# Authenticates packages to push to nuget.org.
6666
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
6767
- name: Download a single artifact
68-
uses: actions/download-artifact@v2
68+
uses: actions/download-artifact@v3
6969
with:
7070
name: NuGet-Package
71+
path: NuGet-Package
7172
- uses: actions/setup-dotnet@v1
7273
with:
7374
dotnet-version: '6.0.x'

.github/workflows/reqnroll.actions.configuration.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,10 @@ jobs:
5757
# Authenticates packages to push to nuget.org.
5858
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
5959
- name: Download a single artifact
60-
uses: actions/download-artifact@v2
60+
uses: actions/download-artifact@v3
6161
with:
6262
name: NuGet-Package
63+
path: NuGet-Package
6364
- uses: actions/setup-dotnet@v1
6465
with:
6566
dotnet-version: '6.0.x'

.github/workflows/reqnroll.actions.docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
# Authenticates packages to push to nuget.org.
6464
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
6565
- name: Download a single artifact
66-
uses: actions/download-artifact@v2
66+
uses: actions/download-artifact@v3
6767
with:
6868
name: NuGet-Package
6969
- uses: actions/setup-dotnet@v1

.github/workflows/reqnroll.actions.lambdatest.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
# if: github.ref == 'refs/heads/main'
7070
# steps:
7171
# - name: Download a single artifact
72-
# uses: actions/download-artifact@v2
72+
# uses: actions/download-artifact@v3
7373
# with:
7474
# name: test-results
7575
# - uses: dorny/test-reporter@v1
@@ -90,9 +90,10 @@ jobs:
9090
# Authenticates packages to push to nuget.org.
9191
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
9292
- name: Download a single artifact
93-
uses: actions/download-artifact@v2
93+
uses: actions/download-artifact@v3
9494
with:
9595
name: NuGet-Package
96+
path: NuGet-Package
9697
- uses: actions/setup-dotnet@v1
9798
with:
9899
dotnet-version: '6.0.x'

.github/workflows/reqnroll.actions.playwright.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ jobs:
6262
# Authenticates packages to push to nuget.org.
6363
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
6464
- name: Download a single artifact
65-
uses: actions/download-artifact@v2
65+
uses: actions/download-artifact@v3
6666
with:
6767
name: NuGet-Package
68+
path: NuGet-Package
6869
- uses: actions/setup-dotnet@v1
6970
with:
7071
dotnet-version: '6.0.x'

.github/workflows/reqnroll.actions.selenium.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ jobs:
6262
# Authenticates packages to push to nuget.org.
6363
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
6464
- name: Download a single artifact
65-
uses: actions/download-artifact@v2
65+
uses: actions/download-artifact@v3
6666
with:
6767
name: NuGet-Package
68+
path: NuGet-Package
6869
- uses: actions/setup-dotnet@v1
6970
with:
7071
dotnet-version: '6.0.x'

.github/workflows/reqnroll.actions.windowsAppDriver.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,10 @@ jobs:
6060
# Authenticates packages to push to nuget.org.
6161
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations.
6262
- name: Download a single artifact
63-
uses: actions/download-artifact@v2
63+
uses: actions/download-artifact@v3
6464
with:
6565
name: NuGet-Package
66+
path: NuGet-Package
6667
- uses: actions/setup-dotnet@v1
6768
with:
6869
dotnet-version: '6.0.x'

0 commit comments

Comments
 (0)