Skip to content

Commit

Permalink
ci: updated github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
emajo authored Aug 28, 2024
1 parent f335b46 commit 32a73ae
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bump-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Checkout OpenAPI repo
env:
GIT_OPENAPI_REPO_PATH: '${{ env.GIT_USER_ID }}/${{ env.GIT_OPENAPI_REPO_ID }}'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ./openapi
ref: master
Expand All @@ -38,7 +38,7 @@ jobs:
name: Trigger Event
env:
GIT_OPENAPI_REPO_PATH: '${{ env.GIT_USER_ID }}/${{ env.GIT_OPENAPI_REPO_ID }}'
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.FATTUREINCLOUD_BOT_TOKEN }}
repository: ${{ env.GIT_OPENAPI_REPO_PATH }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- id: checkout
name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.FATTUREINCLOUD_BOT_TOKEN }}

Expand All @@ -30,11 +30,11 @@ jobs:
- id: setup-node
name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4

- id: setup-python
name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'

Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- id: create-tag
name: Create tag
if: ${{ !env.ACT && github.event.inputs.env == 'prod' }}
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ github.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
steps:
- id: checkout
name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: setup-python
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit 32a73ae

Please sign in to comment.