Skip to content

Commit f9bf2da

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 2c87131 + 1e72f2e commit f9bf2da

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/auto-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
repository: ${{ steps.metadata.outputs.repository }}
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818

1919
- uses: ahmadnassri/action-metadata@v2
2020
id: metadata
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- id: dependabot
36-
uses: dependabot/fetch-metadata@v2
36+
uses: dependabot/fetch-metadata@v3
3737
with:
3838
github-token: ${{ secrets.GITHUB_TOKEN }}
3939

.github/workflows/create-labels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
steps:
1212
-
1313
name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v6
1515
-
1616
name: Run Labeler
1717
if: success()
18-
uses: crazy-max/ghaction-github-labeler@v4
18+
uses: crazy-max/ghaction-github-labeler@v6
1919
with:
2020
github-token: ${{ secrets.GITHUB_TOKEN }}
2121
yaml-file: .github/labels.yml

.github/workflows/update-releases-properties.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
persist-credentials: false
3131

3232
- name: Set up Python
33-
uses: actions/setup-python@v5
33+
uses: actions/setup-python@v6
3434
with:
35-
python-version: '3.11'
35+
python-version: '3.13'
3636

3737
- name: Install dependencies
3838
run: |
@@ -257,7 +257,7 @@ jobs:
257257
258258
- name: Create Pull Request
259259
id: create_pr
260-
uses: peter-evans/create-pull-request@v7
260+
uses: peter-evans/create-pull-request@v8
261261
with:
262262
token: ${{ secrets.GH_PAT }}
263263
base: main

.github/workflows/validate-properties-links.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616

1717
steps:
1818
- name: Checkout PR branch
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
with:
2121
ref: ${{ github.event.pull_request.head.sha }}
2222

2323
- name: Set up Python
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
26-
python-version: '3.11'
26+
python-version: '3.13'
2727

2828
- name: Install dependencies
2929
run: |
@@ -210,7 +210,7 @@ jobs:
210210
211211
- name: Comment on PR with validation results
212212
if: failure()
213-
uses: actions/github-script@v7
213+
uses: actions/github-script@v9
214214
with:
215215
github-token: ${{ secrets.GITHUB_TOKEN }}
216216
script: |
@@ -235,7 +235,7 @@ jobs:
235235
236236
- name: Comment on PR with success
237237
if: success() && steps.changed_files.outputs.files != ''
238-
uses: actions/github-script@v7
238+
uses: actions/github-script@v9
239239
with:
240240
github-token: ${{ secrets.GITHUB_TOKEN }}
241241
script: |

0 commit comments

Comments
 (0)