[GitHub Actions] Updated workflows with newer revisions (#48767)

This commit is contained in:
xavier2k6
2025-12-09 21:03:50 +00:00
committed by GitHub
parent 7d3f88d075
commit cfe0a8e29c
4 changed files with 7 additions and 7 deletions

View File

@@ -11,7 +11,7 @@ jobs:
permissions: permissions:
issues: write issues: write
steps: steps:
- uses: actions/github-script@v7 - uses: actions/github-script@v8
with: with:
script: | script: |
let issue_query = { let issue_query = {

View File

@@ -14,7 +14,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Bootstrap vcpkg - name: Bootstrap vcpkg
run: ./bootstrap-vcpkg.sh run: ./bootstrap-vcpkg.sh

View File

@@ -30,9 +30,9 @@ jobs:
build-mode: none build-mode: none
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Initialize CodeQL - name: Initialize CodeQL
uses: github/codeql-action/init@v3 uses: github/codeql-action/init@v4
with: with:
languages: ${{ matrix.language }} languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }} build-mode: ${{ matrix.build-mode }}
@@ -46,6 +46,6 @@ jobs:
./vcpkg install alac-decoder breakpad[tools] gettimeofday modp-base64 ./vcpkg install alac-decoder breakpad[tools] gettimeofday modp-base64
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3 uses: github/codeql-action/analyze@v4
with: with:
category: "/language:${{matrix.language}}" category: "/language:${{matrix.language}}"

View File

@@ -12,7 +12,7 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
# fetch-depth 50 tries to ensure we capture the whole history of the branch # fetch-depth 50 tries to ensure we capture the whole history of the branch
fetch-depth: 50 fetch-depth: 50
@@ -59,7 +59,7 @@ jobs:
git reset HEAD~ --mixed git reset HEAD~ --mixed
- name: Generate Reply - name: Generate Reply
uses: actions/github-script@v7 uses: actions/github-script@v8
with: with:
script: | script: |
const { promises: fs } = require('fs') const { promises: fs } = require('fs')