Skip to content

Commit ad9fead

Browse files
committed
chore: update GitHub Actions to use latest versions of checkout, cache, and upload-artifact
1 parent 515b358 commit ad9fead

5 files changed

Lines changed: 32 additions & 32 deletions

File tree

.github/workflows/dependabot-manual.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
TERM: xterm
1616
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121

2222
- name: 'Cache: ~/.nuget/packages'
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: |
2626
~/.nuget/packages

.github/workflows/integration.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
TERM: xterm
1414
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: 'Cache: ~/.nuget/packages'
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: |
2323
~/.nuget/packages
@@ -27,7 +27,7 @@ jobs:
2727
NUGET_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2828
run: ./build.cmd -t nugetpush
2929
- name: 'Publish: coverage-report'
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v7
3131
with:
3232
name: coverage-report-linux
3333
path: .tests/coverage-report
@@ -38,19 +38,19 @@ jobs:
3838
TERM: xterm
3939
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0
4444
- name: 'Cache: ~/.nuget/packages'
45-
uses: actions/cache@v4
45+
uses: actions/cache@v5
4646
with:
4747
path: |
4848
~/.nuget/packages
4949
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
5050
- name: 'Build with target: Pack'
5151
run: ./build.cmd -t pack
5252
- name: 'Publish: coverage_report'
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v7
5454
with:
5555
name: coverage-report-windows
5656
path: .tests/coverage-report
@@ -61,19 +61,19 @@ jobs:
6161
TERM: xterm
6262
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
6363
steps:
64-
- uses: actions/checkout@v5
64+
- uses: actions/checkout@v6
6565
with:
6666
fetch-depth: 0
6767
- name: 'Cache: ~/.nuget/packages'
68-
uses: actions/cache@v4
68+
uses: actions/cache@v5
6969
with:
7070
path: |
7171
~/.nuget/packages
7272
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
7373
- name: 'Build with target: Pack'
7474
run: ./build.cmd -t pack
7575
- name: 'Publish: coverage_report'
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v7
7777
with:
7878
name: coverage-report-macos
7979
path: .tests/coverage-report

.github/workflows/main.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
TERM: xterm
1414
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: 'Cache: ~/.nuget/packages'
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: |
2323
~/.nuget/packages
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
NUGET_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
- name: 'Publish: coverage_report'
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v7
3131
with:
3232
name: coverage-report-linux
3333
path: .tests/coverage-report
@@ -38,19 +38,19 @@ jobs:
3838
TERM: xterm
3939
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0
4444
- name: 'Cache: ~/.nuget/packages'
45-
uses: actions/cache@v4
45+
uses: actions/cache@v5
4646
with:
4747
path: |
4848
~/.nuget/packages
4949
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
5050
- name: 'Build with target: Pack'
5151
run: ./build.cmd -t pack
5252
- name: 'Publish: coverage_report'
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v7
5454
with:
5555
name: coverage-report-windows
5656
path: .tests/coverage-report
@@ -61,19 +61,19 @@ jobs:
6161
TERM: xterm
6262
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
6363
steps:
64-
- uses: actions/checkout@v5
64+
- uses: actions/checkout@v6
6565
with:
6666
fetch-depth: 0
6767
- name: 'Cache: ~/.nuget/packages'
68-
uses: actions/cache@v4
68+
uses: actions/cache@v5
6969
with:
7070
path: |
7171
~/.nuget/packages
7272
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
7373
- name: 'Build with target: Pack'
7474
run: ./build.cmd -t pack
7575
- name: 'Publish: coverage_report'
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v7
7777
with:
7878
name: coverage-report-macos
7979
path: .tests/coverage-report

.github/workflows/pull-request.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ jobs:
1313
TERM: xterm
1414
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: 'Cache: ~/.nuget/packages'
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: |
2323
~/.nuget/packages
2424
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
2525
- name: 'Build with target: Pack'
2626
run: ./build.cmd -t pack
2727
- name: 'Publish: coverage_report'
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v7
2929
with:
3030
name: coverage-report-linux
3131
path: .tests/coverage-report
@@ -36,19 +36,19 @@ jobs:
3636
TERM: xterm
3737
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 0
4242
- name: 'Cache: ~/.nuget/packages'
43-
uses: actions/cache@v4
43+
uses: actions/cache@v5
4444
with:
4545
path: |
4646
~/.nuget/packages
4747
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
4848
- name: 'Build with target: Pack'
4949
run: ./build.cmd -t pack
5050
- name: 'Publish: coverage_report'
51-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v7
5252
with:
5353
name: coverage-report-windows
5454
path: .tests/coverage-report
@@ -59,19 +59,19 @@ jobs:
5959
TERM: xterm
6060
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
6161
steps:
62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v6
6363
with:
6464
fetch-depth: 0
6565
- name: 'Cache: ~/.nuget/packages'
66-
uses: actions/cache@v4
66+
uses: actions/cache@v5
6767
with:
6868
path: |
6969
~/.nuget/packages
7070
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
7171
- name: 'Build with target: Pack'
7272
run: ./build.cmd -t pack
7373
- name: 'Publish: coverage_report'
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v7
7575
with:
7676
name: coverage-report-macos
7777
path: .tests/coverage-report

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
TERM: xterm
1414
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: 'Cache: ~/.nuget/packages'
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: |
2323
~/.nuget/packages
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
NUGET_TOKEN: ${{ secrets.NUGET_ORG_TOKEN }}
2929
- name: 'Publish: coverage_report'
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v7
3131
with:
3232
name: coverage-report-linux
3333
path: .tests/coverage-report

0 commit comments

Comments
 (0)