Skip to content
Open
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/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run actionlint
uses: raven-actions/actionlint@v2
2 changes: 1 addition & 1 deletion .github/workflows/asmdef-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Validate Assembly Definition files
shell: pwsh
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build-publish-devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Validate Dockerfile download URLs
run: bash scripts/validate-devcontainer-urls.sh
Expand All @@ -33,21 +33,21 @@ jobs:
run: bash scripts/tests/test-post-create.sh --verbose

- name: Set up QEMU
uses: docker/setup-qemu-action@v4.0.0
uses: docker/setup-qemu-action@v4.1.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4.0.0
uses: docker/setup-buildx-action@v4.1.0

- name: Log in to GHCR
uses: docker/login-action@v4.1.0
uses: docker/login-action@v4.2.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract image metadata
id: meta
uses: docker/metadata-action@v6.0.0
uses: docker/metadata-action@v6.1.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -57,7 +57,7 @@ jobs:

- name: Build and push image
id: build
uses: docker/build-push-action@v7.1.0
uses: docker/build-push-action@v7.2.0
with:
context: .
file: .devcontainer/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Validate CHANGELOG.md format
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csharp-naming-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Test comment-stripping helper
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csharp-no-regions-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Lint C# files for #region directives"
shell: pwsh
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/csharpier-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v5.2.0
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: "8.0.x"

Expand All @@ -34,7 +34,7 @@ jobs:

- name: Commit formatting changes to PR branch (Dependabot only)
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.event.pull_request.user.login == 'dependabot[bot]' }}
uses: stefanzweifel/git-auto-commit-action@v7.1.0
uses: stefanzweifel/git-auto-commit-action@v7.2.0
with:
commit_message: "chore(format): apply CSharpier formatting"
branch: ${{ github.head_ref }}
Expand All @@ -50,15 +50,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout fork PR HEAD
uses: actions/checkout@v6
uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fork autofix checkout breaks v7

Medium Severity

actions/checkout@v7 refuses fork pull request heads on pull_request_target and workflow_run. The Dependabot fork jobs still check out pull_request.head.repo and head.ref under pull_request_target, so those steps fail instead of formatting fork PRs.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 67b2d97. Configure here.

with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
persist-credentials: false
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v5.2.0
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: "8.0.x"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Test Dependabot linter
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-wiki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: main
fetch-depth: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc-code-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/drawer-multiobject-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Test comment-stripping helper
shell: pwsh
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/format-on-demand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jobs:

- name: Checkout PR branch (same-repo)
if: ${{ steps.meta.outputs.same_repo == 'true' }}
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ steps.meta.outputs.head_ref }}
fetch-depth: 0

- name: Checkout PR fork head
if: ${{ steps.meta.outputs.same_repo != 'true' }}
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ steps.meta.outputs.head_repo }}
ref: ${{ steps.meta.outputs.head_ref }}
Expand All @@ -73,7 +73,7 @@ jobs:
node-version: "22"

- name: Setup .NET
uses: actions/setup-dotnet@v5.2.0
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: "8.0.x"

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

- name: Commit changes to PR branch (same-repo)
if: ${{ steps.meta.outputs.same_repo == 'true' && steps.changes.outputs.has_changes == 'true' }}
uses: stefanzweifel/git-auto-commit-action@v7.1.0
uses: stefanzweifel/git-auto-commit-action@v7.2.0
with:
commit_message: "chore(format): apply requested formatting"
branch: ${{ steps.meta.outputs.head_ref }}
Expand Down Expand Up @@ -202,14 +202,14 @@ jobs:

- name: Checkout PR branch (same-repo)
if: ${{ steps.meta.outputs.same_repo == 'true' }}
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ steps.meta.outputs.head_ref }}
fetch-depth: 0

- name: Checkout PR fork head
if: ${{ steps.meta.outputs.same_repo != 'true' }}
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ steps.meta.outputs.head_repo }}
ref: ${{ steps.meta.outputs.head_ref }}
Expand All @@ -222,7 +222,7 @@ jobs:
node-version: "22"

- name: Setup .NET
uses: actions/setup-dotnet@v5.2.0
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: "8.0.x"

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

- name: Commit changes to PR branch (same-repo)
if: ${{ steps.meta.outputs.same_repo == 'true' && steps.changes.outputs.has_changes == 'true' }}
uses: stefanzweifel/git-auto-commit-action@v7.1.0
uses: stefanzweifel/git-auto-commit-action@v7.2.0
with:
commit_message: "chore(format): apply requested formatting"
branch: ${{ steps.meta.outputs.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-header-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Check MIT license headers
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-year-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-doc-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Test comment stripping
shell: pwsh
Expand All @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Check external links (lychee)
uses: lycheeverse/lychee-action@v2.8.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-error-codes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/llm-instructions-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js (cached)
if: ${{ hashFiles('package-lock.json') != '' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/meta-file-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Test meta lint exclusions
run: bash scripts/tests/test-lint-meta-exclusions.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/odin-undo-safety-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Test comment-stripping helper
shell: pwsh
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prettier-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

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

- name: Commit formatting changes to PR branch (Dependabot only)
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.event.pull_request.user.login == 'dependabot[bot]' }}
uses: stefanzweifel/git-auto-commit-action@v7.1.0
uses: stefanzweifel/git-auto-commit-action@v7.2.0
with:
commit_message: "chore(format): apply Prettier/markdownlint fixes"
branch: ${{ github.head_ref }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout fork PR HEAD
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pwsh-invocations-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Test PowerShell invocations linter
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
release-url: ${{ steps.release_drafter.outputs.html_url }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 1 # Only need current commit for package.json and CHANGELOG.md

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
permission-pull-requests: write

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token || github.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
fetch-tags: true
Expand Down
Loading
Loading