Skip to content

Commit

Permalink
Merge pull request #20 from ItinerisLtd/clickup/86bxd944c/action-depr…
Browse files Browse the repository at this point in the history
…ecations

clickup/86bxd944c/action deprecations
  • Loading branch information
codepuncher authored Feb 8, 2024
2 parents 2f52598 + 816e681 commit ecc99dc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-mu-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: php-style-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP ${{ inputs.PHP_VERSION }}
uses: shivammathur/setup-php@v2
Expand All @@ -32,7 +32,7 @@ jobs:
run: echo "dir=$(composer config cache-files-dir)" >> "${GITHUB_OUTPUT}"

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
# yamllint disable-line rule:line-length
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci-theme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
outputs:
THEME_CHANGED: ${{ steps.diff.outputs.THEME_CHANGED }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- id: diff
run: |
Expand All @@ -52,10 +52,10 @@ jobs:
run:
working-directory: web/app/themes/${{ inputs.THEME_NAME }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Node ${{ inputs.NODE_VERSION }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.NODE_VERSION }}
cache: yarn
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
run:
working-directory: web/app/themes/${{ inputs.THEME_NAME }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP ${{ inputs.PHP_VERSION }}
uses: shivammathur/setup-php@v2
Expand All @@ -102,7 +102,7 @@ jobs:
run: echo "dir=$(composer config cache-files-dir)" >> "${GITHUB_OUTPUT}"

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
# yamllint disable-line rule:line-length
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/trellis-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ jobs:
if: github.sha != vars.LAST_DEPLOY && github.actor != 'kodiakhq[bot]' && github.actor != 'dependabot[bot]'
steps:
- name: Checkout Bedrock
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: bedrock

- name: Setup Node ${{ inputs.NODE_VERSION }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
if: "${{ inputs.THEME_NAME != '' }}"
with:
node-version: "${{ inputs.NODE_VERSION }}"
Expand All @@ -80,7 +80,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout Trellis
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "${{ inputs.TRELLIS_REPOSITORY }}"
path: trellis
Expand Down

0 comments on commit ecc99dc

Please sign in to comment.