Skip to content

Commit 5faf1ee

Browse files
authored
Bump deprecated workflow scripts (#271)
1 parent b21837c commit 5faf1ee

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
build:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Setup .NET SDK
21-
uses: actions/setup-dotnet@v3
21+
uses: actions/setup-dotnet@v4
2222
with:
2323
dotnet-version: 7.0.x
2424
source-url: https://nuget.pkg.github.com/graphql-dotnet/index.json
@@ -31,7 +31,7 @@ jobs:
3131
- name: Pack solution [Release]
3232
run: dotnet pack --no-restore --no-build -c Release -p:VersionSuffix=$GITHUB_RUN_NUMBER -o out
3333
- name: Upload artifacts
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: Nuget packages
3737
path: |

.github/workflows/formatting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout source
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Setup .NET SDK
16-
uses: actions/setup-dotnet@v3
16+
uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: 7.0.x
1919
source-url: https://nuget.pkg.github.com/graphql-dotnet/index.json

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Check github.ref starts with 'refs/tags/'
1818
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
1919
run: |
@@ -28,7 +28,7 @@ jobs:
2828
echo version=$version
2929
echo "version=$version" >> $GITHUB_ENV
3030
- name: Setup .NET SDK
31-
uses: actions/setup-dotnet@v3
31+
uses: actions/setup-dotnet@v4
3232
with:
3333
dotnet-version: 7.0.x
3434
source-url: https://api.nuget.org/v3/index.json
@@ -41,7 +41,7 @@ jobs:
4141
- name: Pack solution [Release]
4242
run: dotnet pack --no-restore --no-build -c Release -p:Version=$version -o out
4343
- name: Upload Nuget packages as workflow artifacts
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: Nuget packages
4747
path: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout source
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Setup .NET SDK
16-
uses: actions/setup-dotnet@v3
16+
uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: 7.0.x
1919
source-url: https://nuget.pkg.github.com/graphql-dotnet/index.json

0 commit comments

Comments
 (0)