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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- 9.0.x
- 10.0.x
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # 6.0.3
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
- name: Setup dotNet
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # 5.4.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # 6.0.3
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
- uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # 5.4.0
with:
dotnet-version: '8.0.x'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Semantic action remains on old revision

When pull-request title validation runs, GitHub Actions resolves the action from the unchanged immutable SHA rather than the updated version comment, causing the workflow to continue using the previous action revision without the v6.1.1 fixes and features.

Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/lint-pr-title.yml
Line: 18

Comment:
**Semantic action remains on old revision**

When pull-request title validation runs, GitHub Actions resolves the action from the unchanged immutable SHA rather than the updated version comment, causing the workflow to continue using the previous action revision without the v6.1.1 fixes and features.

---

For each issue above, determine whether it is valid and should be fixed. If so, fix it directly.

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # 6.0.3
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
- name: Setup dotNet
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # 5.4.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
permission-pull-requests: write

- name: Checkout release PR branch
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # 6.0.3
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
with:
ref: ${{ fromJSON(needs.release-please.outputs.pr).headBranchName }}
token: ${{ steps.generate-token.outputs.token }}
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
permission-contents: write
permission-pull-requests: write

- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # 6.0.3
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
with:
token: ${{ steps.generate-token.outputs.token }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id-token: write
contents: read
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # 6.0.3
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
- name: Setup DotNet
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # 5.4.0
with:
Expand Down
Loading