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
2 parents fc37b27 + 6333e38 commit 56d4fa0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bump-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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 @@ -39,7 +39,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 @@ -8,7 +8,7 @@ jobs:

- id: checkout
name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.FATTUREINCLOUD_BOT_TOKEN }}

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

- id: setup-libraries
name: Install libraries
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- id: create-tag
name: Create tag
if: ${{ !env.ACT }}
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ github.token }}
script: |
Expand All @@ -76,7 +76,7 @@ jobs:
- id: trigger-create-version
name: Trigger Create Version Event
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ github.token }}
event-type: create-release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/trigger-phar-generation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ jobs:
steps:
- id: checkout
name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.FATTUREINCLOUD_BOT_TOKEN }}

- id: trigger-event
name: Trigger Event
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.FATTUREINCLOUD_BOT_TOKEN }}
event-type: create-release
4 changes: 2 additions & 2 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- id: checkout
name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
Expand All @@ -37,7 +37,7 @@ jobs:

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
Expand Down

0 comments on commit 56d4fa0

Please sign in to comment.