Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/composer/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ runs:
COMPOSER_CONFIG: ${{ inputs.COMPOSER_CONFIG }}

- name: Install Composer dependencies
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4
if: ${{ inputs.INSTALL_AND_CACHE == 'true' }}
with:
composer-options: ${{ inputs.COMPOSER_ARGS }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
with:
node-version: ${{ inputs.node-version }}

- uses: webfactory/ssh-agent@v0.9.1
- uses: webfactory/ssh-agent@v0.10.0
if: ${{ inputs.needs-auth }}
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Build assets
run: ${{ inputs.build-cmd }}

- uses: stefanzweifel/git-auto-commit-action@v5
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "chore: 🤖 Build assets"
# file_pattern: ${{ inputs.file-pattern }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
uses: tj-actions/changed-files@v47

# - name: Run PHPCS
# if: steps.changed-files.outputs.all_changed_files != '' && steps.check_composer.outputs.files_exists == 'true'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/composer-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- run: echo "NOW=$(TZ=Europe/Paris date +'%Y-%m-%d %H:%M')" >> $GITHUB_ENV

- name: Generate PR/commit summary
uses: actions/github-script@v7
uses: actions/github-script@v8
if: ${{ steps.composer_diff.outputs.composer_diff_exit_code != 0 }}
id: summary
env:
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

echo "${{ steps.summary.outputs.result }}" | cat - CHANGELOG.md > temp && mv temp CHANGELOG.md

- uses: peter-evans/create-pull-request@v7
- uses: peter-evans/create-pull-request@v8
if: ${{ steps.composer_diff.outputs.composer_diff_exit_code != 0 }}
env:
NOW: ${{ env.NOW }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: webfactory/ssh-agent@v0.9.1
- uses: webfactory/ssh-agent@v0.10.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
uses: tj-actions/changed-files@v47
with:
files: |
**/*.js
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- name: Get branch names
id: branch-names
uses: tj-actions/branch-names@v8
uses: tj-actions/branch-names@v9

- name: Checkout
if: ${{ steps.branch-names.outputs.current_branch == 'update-dependencies' }}
Expand All @@ -27,7 +27,7 @@ jobs:
cb="$(git show -s --format=%b)"
echo "commit_body<<EOF"$'\n'"$cb"$'\n'EOF >> $GITHUB_OUTPUT

- uses: actions/github-script@v7
- uses: actions/github-script@v8
if: ${{ steps.branch-names.outputs.current_branch == 'update-dependencies' }}
id: release-tag
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stylelint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
uses: tj-actions/changed-files@v47
with:
files: |
**/*.scss
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
outputs:
targets: ${{ steps.targets.outputs.result }}
steps:
- uses: actions/github-script@v7
- uses: actions/github-script@v8
id: targets
env:
TOKEN: ${{ secrets.TOKEN }}
Expand Down
Loading