Skip to content

Commit 306e4fc

Browse files
authored
Merge branch 'main' into copilot/support-co-authored-by
2 parents b14feb0 + 2d488fc commit 306e4fc

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

.github/workflows/auto-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
permissions:
1212
contents: read
1313
pull-requests: write
14-
uses: github/ospo-reusable-workflows/.github/workflows/auto-labeler.yaml@26eec20abba5ae806698592c79628f6906da372c
14+
uses: github/ospo-reusable-workflows/.github/workflows/auto-labeler.yaml@3b691dff6b68489c8548e1295d125c93c9c29a4e
1515
with:
1616
config-name: release-drafter.yml
1717
secrets:

.github/workflows/contributors_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
echo "END_DATE=$end_date" >> "$GITHUB_ENV"
3131
3232
- name: Run contributor action
33-
uses: github/contributors@abf36819e840f6e8056dcd40d33003ce7c4bc8dd
33+
uses: github/contributors@0d5adc3833e89ee1f4145744f5d69313cf5ea238
3434
env:
3535
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
START_DATE: ${{ env.START_DATE }}

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# If you do not check out your code, Copilot will do this for you.
2727
steps:
2828
- name: Checkout code
29-
uses: actions/[email protected].0
29+
uses: actions/[email protected].1
3030
with:
3131
persist-credentials: false
3232

.github/workflows/docker-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/[email protected].0
17+
- uses: actions/[email protected].1
1818
with:
1919
persist-credentials: false
2020
- name: Build the Docker image

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
contents: read
1313
pull-requests: read
1414
statuses: write
15-
uses: github/ospo-reusable-workflows/.github/workflows/pr-title.yaml@26eec20abba5ae806698592c79628f6906da372c
15+
uses: github/ospo-reusable-workflows/.github/workflows/pr-title.yaml@3b691dff6b68489c8548e1295d125c93c9c29a4e
1616
secrets:
1717
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/python-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
python-version: [3.11, 3.12]
2222
steps:
23-
- uses: actions/[email protected].0
23+
- uses: actions/[email protected].1
2424
with:
2525
persist-credentials: false
2626
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
permissions:
1313
contents: write
1414
pull-requests: read
15-
uses: github/ospo-reusable-workflows/.github/workflows/release.yaml@26eec20abba5ae806698592c79628f6906da372c
15+
uses: github/ospo-reusable-workflows/.github/workflows/release.yaml@3b691dff6b68489c8548e1295d125c93c9c29a4e
1616
with:
1717
publish: true
1818
release-config-name: release-drafter.yml
@@ -25,7 +25,7 @@ jobs:
2525
packages: write
2626
id-token: write
2727
attestations: write
28-
uses: github/ospo-reusable-workflows/.github/workflows/release-image.yaml@26eec20abba5ae806698592c79628f6906da372c
28+
uses: github/ospo-reusable-workflows/.github/workflows/release-image.yaml@3b691dff6b68489c8548e1295d125c93c9c29a4e
2929
with:
3030
image-name: ${{ github.repository }}
3131
full-tag: ${{ needs.release.outputs.full-tag }}
@@ -40,7 +40,7 @@ jobs:
4040
permissions:
4141
contents: read
4242
discussions: write
43-
uses: github/ospo-reusable-workflows/.github/workflows/release-discussion.yaml@26eec20abba5ae806698592c79628f6906da372c
43+
uses: github/ospo-reusable-workflows/.github/workflows/release-discussion.yaml@3b691dff6b68489c8548e1295d125c93c9c29a4e
4444
with:
4545
full-tag: ${{ needs.release.outputs.full-tag }}
4646
body: ${{ needs.release.outputs.body }}

.github/workflows/scorecard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/[email protected].0
28+
uses: actions/[email protected].1
2929
with:
3030
persist-credentials: false
3131

@@ -36,12 +36,12 @@ jobs:
3636
results_format: sarif
3737
publish_results: true
3838
- name: "Upload artifact"
39-
uses: actions/upload-artifact@v5.0.0
39+
uses: actions/upload-artifact@v6.0.0
4040
with:
4141
name: SARIF file
4242
path: results.sarif
4343
retention-days: 5
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2
45+
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7
4646
with:
4747
sarif_file: results.sarif

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/[email protected].0
14+
- uses: actions/[email protected].1
1515
with:
1616
stale-issue-message: "This issue is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 14 days."
1717
close-issue-message: "This issue was closed because it has been stalled for 35 days with no activity."

.github/workflows/super-linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
statuses: write
1919
steps:
2020
- name: Checkout Code
21-
uses: actions/[email protected].0
21+
uses: actions/[email protected].1
2222
with:
2323
fetch-depth: 0
2424
persist-credentials: false

0 commit comments

Comments
 (0)