Skip to content

Commit 8939089

Browse files
authored
Merge branch 'main' into feat/bubble-appid-metadata
2 parents 907d142 + 4f5e075 commit 8939089

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
lint:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- name: Set up Python 3.10
2424
uses: actions/setup-python@v5
2525
with:
@@ -51,7 +51,7 @@ jobs:
5151
matrix:
5252
python_ver: ["3.10", "3.11", "3.12", "3.13"]
5353
steps:
54-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v6
5555
- name: Set up Python ${{ matrix.python_ver }}
5656
uses: actions/setup-python@v5
5757
with:

.github/workflows/integration-tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Get PR details
4444
if: github.event_name == 'issue_comment'
4545
id: pr
46-
uses: actions/github-script@v7
46+
uses: actions/github-script@v8
4747
with:
4848
script: |
4949
const pr = context.payload.issue.pull_request;
@@ -62,14 +62,14 @@ jobs:
6262
6363
- name: Checkout PR
6464
if: github.event_name == 'issue_comment'
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v6
6666
with:
6767
ref: ${{ steps.pr.outputs.head_sha }}
6868
repository: ${{ steps.pr.outputs.head_repo }}
6969

7070
- name: Checkout
7171
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v6
7373

7474
- name: Set up Python ${{ matrix.python_ver }}
7575
uses: actions/setup-python@v5
@@ -127,7 +127,7 @@ jobs:
127127
actions: read
128128
steps:
129129
- name: Comment PR with test results summary
130-
uses: actions/github-script@v7
130+
uses: actions/github-script@v8
131131
with:
132132
script: |
133133
const prNumber = context.payload.issue.number;

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
env:
2525
TWINE_USERNAME: "__token__"
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0
3030
- name: Set up Python 3.11

0 commit comments

Comments
 (0)