Skip to content

Commit 35ae95a

Browse files
github-actions[bot]Copilot
authored andcommitted
eng: update GitHub Actions to latest major versions
- actions/checkout: v5 → v6 (all workflow files) - actions/cache: v4 → v5 (build.yaml, test.yaml, main.yaml) Supersedes Dependabot PR #323 (actions/cache bump). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 84615e6 commit 35ae95a

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99

1010
steps:
1111
- name: checkout-code
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
fetch-depth: 0
1515

1616
- name: setup-dotnet
1717
uses: actions/setup-dotnet@v4
1818

1919
- name: Cache NuGet packages
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: ~/.nuget/packages
2323
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.fsproj', '**/*.csproj', 'global.json') }}
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
# checkout the code
3737
- name: checkout-code
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 0
4141

@@ -45,7 +45,7 @@ jobs:
4545

4646
# cache NuGet packages to avoid re-downloading on every run
4747
- name: Cache NuGet packages
48-
uses: actions/cache@v4
48+
uses: actions/cache@v5
4949
with:
5050
path: ~/.nuget/packages
5151
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.fsproj', '**/*.csproj', 'global.json') }}

.github/workflows/main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
steps:
1313
# checkout the code
1414
- name: checkout-code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
# setup dotnet based on global.json
1919
- name: setup-dotnet
2020
uses: actions/setup-dotnet@v4
2121
# cache NuGet packages to avoid re-downloading on every run
2222
- name: Cache NuGet packages
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: ~/.nuget/packages
2626
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.fsproj', '**/*.csproj', 'global.json') }}
@@ -38,15 +38,15 @@ jobs:
3838
steps:
3939
# checkout the code
4040
- name: checkout-code
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0
4444
# setup dotnet based on global.json
4545
- name: setup-dotnet
4646
uses: actions/setup-dotnet@v4
4747
# cache NuGet packages to avoid re-downloading on every run
4848
- name: Cache NuGet packages
49-
uses: actions/cache@v4
49+
uses: actions/cache@v5
5050
with:
5151
path: ~/.nuget/packages
5252
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.fsproj', '**/*.csproj', 'global.json') }}

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
# checkout the code
1818
- name: checkout-code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
# setup dotnet based on global.json

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
# checkout the code
1111
- name: checkout-code
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
fetch-depth: 0
1515

@@ -19,7 +19,7 @@ jobs:
1919

2020
# cache NuGet packages to avoid re-downloading on every run
2121
- name: Cache NuGet packages
22-
uses: actions/cache@v4
22+
uses: actions/cache@v5
2323
with:
2424
path: ~/.nuget/packages
2525
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.fsproj', '**/*.csproj', 'global.json') }}
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
# checkout the code
4949
- name: checkout-code
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151
with:
5252
fetch-depth: 0
5353

@@ -57,7 +57,7 @@ jobs:
5757

5858
# cache NuGet packages to avoid re-downloading on every run
5959
- name: Cache NuGet packages
60-
uses: actions/cache@v4
60+
uses: actions/cache@v5
6161
with:
6262
path: ~/.nuget/packages
6363
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.fsproj', '**/*.csproj', 'global.json') }}

0 commit comments

Comments
 (0)