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/actions/GetGitBranches/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
using: composite
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0

- name: run
shell: pwsh
Expand Down
4 changes: 3 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ updates:
- dependency-name: "microsoft/AL-Go-Actions/*"
- dependency-name: "microsoft/AL-Go/*"
labels:
- "Automation"
- "Automation"
cooldown:
default-days: 7
6 changes: 3 additions & 3 deletions .github/workflows/ai-triage-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Mint token for the agent repo
id: app-token
uses: actions/create-github-app-token@v3
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
with:
app-id: ${{ vars.TRIAGE_APP_ID }}
private-key: ${{ secrets.TRIAGE_APP_PRIVATE_KEY }}
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:

- name: Apply triage result
if: steps.download.outputs.have_result == 'true'
uses: actions/github-script@v9
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const fs = require('fs');
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:

- name: Report triage failure
if: always() && (steps.await.outputs.run_id == '' || steps.download.outputs.have_result == 'false')
uses: actions/github-script@v9
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
await github.rest.issues.createComment({
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ownership-classification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Check labels and manual override
id: preflight
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
env:
SUBJECT_KIND: ${{ env.SUBJECT_KIND }}
SUBJECT_NUMBER: ${{ env.SUBJECT_NUMBER }}
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
- name: Create correlation token
if: steps.preflight.outputs.dispatch == 'true'
id: correlation
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: core.setOutput('token', require('crypto').randomUUID())

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

- name: Validate and apply ownership result
if: steps.preflight.outputs.dispatch == 'true'
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
env:
RESULT_PATH: result/ownership-result.json
CORRELATION_TOKEN: ${{ steps.correlation.outputs.token }}
Expand Down
Loading