Skip to content

Commit cfe0a8e

Browse files
authored
[GitHub Actions] Updated workflows with newer revisions (#48767)
1 parent 7d3f88d commit cfe0a8e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/check_issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
permissions:
1212
issues: write
1313
steps:
14-
- uses: actions/github-script@v7
14+
- uses: actions/github-script@v8
1515
with:
1616
script: |
1717
let issue_query = {

.github/workflows/check_tools_sha.yml

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

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818

1919
- name: Bootstrap vcpkg
2020
run: ./bootstrap-vcpkg.sh

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
build-mode: none
3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
- name: Initialize CodeQL
35-
uses: github/codeql-action/init@v3
35+
uses: github/codeql-action/init@v4
3636
with:
3737
languages: ${{ matrix.language }}
3838
build-mode: ${{ matrix.build-mode }}
@@ -46,6 +46,6 @@ jobs:
4646
./vcpkg install alac-decoder breakpad[tools] gettimeofday modp-base64
4747
4848
- name: Perform CodeQL Analysis
49-
uses: github/codeql-action/analyze@v3
49+
uses: github/codeql-action/analyze@v4
5050
with:
5151
category: "/language:${{matrix.language}}"

.github/workflows/untrustedPR.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
with:
1717
# fetch-depth 50 tries to ensure we capture the whole history of the branch
1818
fetch-depth: 50
@@ -59,7 +59,7 @@ jobs:
5959
git reset HEAD~ --mixed
6060
6161
- name: Generate Reply
62-
uses: actions/github-script@v7
62+
uses: actions/github-script@v8
6363
with:
6464
script: |
6565
const { promises: fs } = require('fs')

0 commit comments

Comments
 (0)