Skip to content

Commit 7291b4c

Browse files
committed
chore(deps): update pipeline dependencies
1 parent dda10a9 commit 7291b4c

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ jobs:
1313
pack:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919

20-
- uses: actions/setup-dotnet@v3
20+
- uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: 6.0.x
2323

2424
- run: ./build.ps1 --target=pack
2525
shell: pwsh
2626

27-
- uses: actions/upload-artifact@v3
27+
- uses: actions/upload-artifact@v4
2828
with:
2929
name: output-${{ github.run_number }}-${{ github.run_attempt }}
3030
path: .output/
@@ -37,16 +37,16 @@ jobs:
3737
matrix:
3838
os: [ubuntu-latest, windows-latest]
3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
with:
4242
fetch-depth: 0
4343

44-
- uses: actions/setup-dotnet@v3
44+
- uses: actions/setup-dotnet@v4
4545
with:
4646
dotnet-version: |
4747
6.0.x
4848
49-
- uses: actions/download-artifact@v3
49+
- uses: actions/download-artifact@v4
5050
with:
5151
name: output-${{ github.run_number }}-${{ github.run_attempt }}
5252
path: .output/
@@ -59,6 +59,6 @@ jobs:
5959
runs-on: ubuntu-latest
6060
needs: [test]
6161
steps:
62-
- uses: geekyeggo/delete-artifact@v2
62+
- uses: geekyeggo/delete-artifact@v4
6363
with:
6464
name: output-${{ github.run_number }}-${{ github.run_attempt }}

.github/workflows/release.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99
pack:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515

16-
- uses: actions/setup-dotnet@v3
16+
- uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: 6.0.x
1919

2020
- run: ./build.ps1 --target=pack
2121
shell: pwsh
2222

23-
- uses: actions/upload-artifact@v3
23+
- uses: actions/upload-artifact@v4
2424
with:
2525
name: output-${{ github.run_number }}-${{ github.run_attempt }}
2626
path: .output/
@@ -33,16 +33,16 @@ jobs:
3333
matrix:
3434
os: [ubuntu-latest, windows-latest]
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
with:
3838
fetch-depth: 0
3939

40-
- uses: actions/setup-dotnet@v3
40+
- uses: actions/setup-dotnet@v4
4141
with:
4242
dotnet-version: |
4343
6.0.x
4444
45-
- uses: actions/download-artifact@v3
45+
- uses: actions/download-artifact@v4
4646
with:
4747
name: output-${{ github.run_number }}-${{ github.run_attempt }}
4848
path: .output/
@@ -54,15 +54,15 @@ jobs:
5454
runs-on: ubuntu-latest
5555
needs: [test]
5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
with:
5959
fetch-depth: 0
6060

61-
- uses: actions/setup-dotnet@v3
61+
- uses: actions/setup-dotnet@v4
6262
with:
6363
dotnet-version: 6.0.x
6464

65-
- uses: actions/download-artifact@v3
65+
- uses: actions/download-artifact@v4
6666
with:
6767
name: output-${{ github.run_number }}-${{ github.run_attempt }}
6868
path: .output/
@@ -75,6 +75,6 @@ jobs:
7575
runs-on: ubuntu-latest
7676
needs: [push]
7777
steps:
78-
- uses: geekyeggo/delete-artifact@v2
78+
- uses: geekyeggo/delete-artifact@v4
7979
with:
8080
name: output-${{ github.run_number }}-${{ github.run_attempt }}

.github/workflows/renovate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Use Node.js 18
16-
uses: actions/setup-node@v3
16+
uses: actions/setup-node@v4
1717
with:
1818
node-version: 18
1919

.github/workflows/semgrep.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020

2121
steps:
2222
- name: Checkout all commits and tags
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
if: ${{ github.event_name == 'pull_request' }}
2525
with:
2626
fetch-depth: 0
2727

2828
- name: Checkout single commit
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
if: ${{ github.event_name != 'pull_request' }}
3131

3232
- name: Pull request scan
@@ -39,14 +39,14 @@ jobs:
3939

4040
- name: Save report as pipeline artifact
4141
if: ${{ github.event_name != 'pull_request' }}
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: report.sarif
4545
path: report.sarif
4646

4747
- name: Publish code scanning alerts
4848
if: ${{ github.event_name != 'pull_request' }}
49-
uses: github/codeql-action/upload-sarif@v2
49+
uses: github/codeql-action/upload-sarif@v3
5050
with:
5151
sarif_file: report.sarif
5252
category: semgrep

0 commit comments

Comments
 (0)