Skip to content

Commit 5e4dc27

Browse files
committed
chore(deps): update pipeline dependencies
1 parent 7d861d4 commit 5e4dc27

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
os: [ubuntu-24.04, ubuntu-22.04, macos-15, windows-2025]
1818
fail-fast: false
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323

24-
- uses: actions/setup-dotnet@v4
24+
- uses: actions/setup-dotnet@v5
2525

2626
# https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-ubuntu-tarball/#prerequisites
2727
- if: matrix.os == 'ubuntu-24.04'

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
release:
99
runs-on: ubuntu-24.04
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 0
1414

15-
- uses: actions/setup-dotnet@v4
15+
- uses: actions/setup-dotnet@v5
1616

1717
# https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-ubuntu-tarball/#prerequisites
1818
- run: |

.github/workflows/renovate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414

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

2020
- name: Renovate
2121
shell: bash

.github/workflows/semgrep.yml

Lines changed: 4 additions & 4 deletions
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@v5
23+
uses: actions/checkout@v6
2424
if: ${{ github.event_name == 'pull_request' }}
2525
with:
2626
fetch-depth: 0
2727

2828
- name: Checkout single commit
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
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@v4
42+
uses: actions/upload-artifact@v5
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@v3
49+
uses: github/codeql-action/upload-sarif@v4
5050
with:
5151
sarif_file: report.sarif
5252
category: semgrep

0 commit comments

Comments
 (0)