Skip to content

Commit 43b81e4

Browse files
committed
upd - Updated GH Actions workflow dependencies
--- This is to prevent workflow failures that may result from forced usage of Node.js 24.x LTS. --- Type: upd Breaking: No Doc Required: No Backport Required: No AI Assisted: No Part: 1/1
1 parent 7145737 commit 43b81e4

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/build-rel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
runs-on: ${{ matrix.runs-on }}
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
with:
2222
submodules: 'true'
2323
ref: ${{ github.ref }}
2424
- name: Setup .NET
25-
uses: actions/setup-dotnet@v4
25+
uses: actions/setup-dotnet@v5
2626
with:
2727
dotnet-version: '10.0.x'
2828
- name: Setup Mono (Unix)

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
runs-on: ${{ matrix.runs-on }}
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
with:
2222
submodules: 'true'
2323
ref: ${{ github.ref }}
2424
- name: Setup .NET
25-
uses: actions/setup-dotnet@v4
25+
uses: actions/setup-dotnet@v5
2626
with:
2727
dotnet-version: '10.0.x'
2828
- name: Setup Mono (Unix)

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v6
2929
with:
3030
submodules: 'true'
3131
ref: ${{ github.ref }}

.github/workflows/docgen.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
name: "Make API Reference"
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
name: Fetching the source
2626
with:
2727
submodules: 'true'
2828
ref: ${{ github.ref }}
2929
- name: Setup .NET
30-
uses: actions/setup-dotnet@v4
30+
uses: actions/setup-dotnet@v5
3131
with:
3232
dotnet-version: '10.0.x'
3333
- name: Setup DocFX
@@ -37,8 +37,8 @@ jobs:
3737
make rel-ci
3838
make doc
3939
- name: Saving changes to gh-pages
40-
uses: actions/upload-pages-artifact@v3
40+
uses: actions/upload-pages-artifact@v4
4141
with:
4242
path: 'docs'
4343
- id: deployment
44-
uses: actions/deploy-pages@v4
44+
uses: actions/deploy-pages@v5

.github/workflows/release-canary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
attestations: write
1919
packages: write
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
with:
2323
submodules: 'true'
2424
ref: ${{ github.ref }}
2525
- name: Setup .NET
26-
uses: actions/setup-dotnet@v4
26+
uses: actions/setup-dotnet@v5
2727
with:
2828
dotnet-version: '10.0.x'
2929
- name: Release Asset Preparation

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
contents: write
1515
attestations: write
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
with:
1919
submodules: 'true'
2020
ref: ${{ github.ref }}
2121
- name: Setup .NET
22-
uses: actions/setup-dotnet@v4
22+
uses: actions/setup-dotnet@v5
2323
with:
2424
dotnet-version: '10.0.x'
2525
- name: Setup DocFX

.github/workflows/syncmirror.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
sync:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
submodules: 'true'
1818
fetch-depth: 0

0 commit comments

Comments
 (0)