Skip to content

Commit

Permalink
[TASK] Update github actions to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott committed Oct 8, 2024
1 parent c106703 commit ff450ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- id: checkout
name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
- id: setup_mysql
name: Set up MySQL ${{ matrix.mysql }}
uses: mirromutth/mysql-action@v1.1
Expand All @@ -43,7 +43,7 @@ jobs:
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
echo "timestamp=$(date +"%s")" >> $GITHUB_OUTPUT
- name: Cache Composer dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache-vars.outputs.dir }}
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ matrix.typo3 }}-${{ steps.composer-cache-vars.outputs.timestamp }}
Expand Down Expand Up @@ -92,9 +92,9 @@ jobs:
name: Build Frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install
Expand All @@ -120,7 +120,7 @@ jobs:
if: (github.ref == 'refs/heads/master') && github.event_name != 'pull_request' && (github.repository == 'benjaminkott/bootstrap_package')
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up PHP Version 7.4
uses: shivammathur/setup-php@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check tag
run: |
Expand Down

0 comments on commit ff450ec

Please sign in to comment.