Skip to content

Commit d02f379

Browse files
⬆️ Update GitHub Actions
1 parent 7ff14dd commit d02f379

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.github/actions/setup-node/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ runs:
55
using: "composite"
66
steps:
77
- name: Install node.js
8-
uses: actions/setup-node@v4
8+
uses: actions/setup-node@v5
99
with:
1010
node-version: lts/*
1111

1212
- name: Install pnpm
13-
uses: pnpm/action-setup@v2
13+
uses: pnpm/action-setup@v4
1414
with:
15-
version: 8
15+
version: 8 || 10
1616

1717
- name: Get pnpm store directory
1818
shell: bash

.github/actions/setup-python/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ runs:
1111
using: "composite"
1212
steps:
1313
- name: setup python
14-
uses: actions/setup-python@v5
14+
uses: actions/setup-python@v6
1515
with:
1616
python-version: ${{ inputs.python-version }}
1717
- name: Setup Poetry

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
group: pull-request-changelog
1919
cancel-in-progress: true
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222

2323
- uses: release-drafter/release-drafter@v6
2424
id: release-drafter

.github/workflows/release-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
with:
1313
ref: main
1414
token: ${{ secrets.GH_PAT }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
pull-requests: write
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424

2525
- name: Setup Python environment
2626
uses: ./.github/actions/setup-python

.github/workflows/test-no-adapters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
PYTHON_VERSION: 3.12
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131

3232
- name: Setup Python environment
3333
uses: ./.github/actions/setup-python

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
PYTHON_VERSION: ${{ matrix.python-version }}
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434

3535
- name: Setup Python environment
3636
uses: ./.github/actions/setup-python

.github/workflows/website-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
cancel-in-progress: true
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/website-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
cancel-in-progress: true
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
ref: ${{ github.event.pull_request.head.sha }}
1717
fetch-depth: 0

0 commit comments

Comments
 (0)