Skip to content

Commit 32a73ae

Browse files
authored
ci: updated github actions versions
1 parent f335b46 commit 32a73ae

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/bump-version.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Checkout OpenAPI repo
1414
env:
1515
GIT_OPENAPI_REPO_PATH: '${{ env.GIT_USER_ID }}/${{ env.GIT_OPENAPI_REPO_ID }}'
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
path: ./openapi
1919
ref: master
@@ -38,7 +38,7 @@ jobs:
3838
name: Trigger Event
3939
env:
4040
GIT_OPENAPI_REPO_PATH: '${{ env.GIT_USER_ID }}/${{ env.GIT_OPENAPI_REPO_ID }}'
41-
uses: peter-evans/repository-dispatch@v2
41+
uses: peter-evans/repository-dispatch@v3
4242
with:
4343
token: ${{ secrets.FATTUREINCLOUD_BOT_TOKEN }}
4444
repository: ${{ env.GIT_OPENAPI_REPO_PATH }}

.github/workflows/release-version.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- id: checkout
2020
name: Checkout repo
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
token: ${{ secrets.FATTUREINCLOUD_BOT_TOKEN }}
2424

@@ -30,11 +30,11 @@ jobs:
3030
3131
- id: setup-node
3232
name: Setup Node.js
33-
uses: actions/setup-node@v3
33+
uses: actions/setup-node@v4
3434

3535
- id: setup-python
3636
name: Set up Python 3.9
37-
uses: actions/setup-python@v4
37+
uses: actions/setup-python@v5
3838
with:
3939
python-version: '3.9'
4040

@@ -85,7 +85,7 @@ jobs:
8585
- id: create-tag
8686
name: Create tag
8787
if: ${{ !env.ACT && github.event.inputs.env == 'prod' }}
88-
uses: actions/github-script@v6
88+
uses: actions/github-script@v7
8989
with:
9090
github-token: ${{ github.token }}
9191
script: |

.github/workflows/validate.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
steps:
1616
- id: checkout
1717
name: Checkout repo
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- id: setup-python
2121
name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525

0 commit comments

Comments
 (0)