Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout_repo
uses: actions/checkout@v6
uses: actions/checkout@v7.0.0

- name: Install .NET 10
uses: actions/setup-dotnet@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
VIMEO_TOKEN: ${{ secrets.VIMEO_TOKEN }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7.0.0
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@v7.0.0

- name: Setup .NET 10 SDK
uses: actions/setup-dotnet@v5
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/repro-bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Resolve target context
id: target
# Pinned to v7.0.1 commit SHA for supply-chain safety.
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
uses: actions/github-script@v9
with:
script: |
const isDispatch = context.eventName === 'workflow_dispatch';
Expand Down Expand Up @@ -152,19 +152,19 @@ jobs:
core.setOutput('issue_number', String(issueNumber));

- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ steps.target.outputs.checkout_ref }}
# Don't leave the GITHUB_TOKEN in .git/config — we only need to read.
persist-credentials: false

- name: Setup Node.js
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
uses: actions/setup-node@v6
with:
node-version: 22

- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:

- name: Upload Playwright artifacts
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@v7
with:
name: repro-artifacts-${{ steps.target.outputs.issue_number }}
path: |
Expand All @@ -292,7 +292,7 @@ jobs:

- name: Comment on issue or PR with artifact link
if: always() && env.ISSUE_NUMBER != ''
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@v9
with:
script: |
const runUrl =
Expand Down
Loading