From b64a517b3ff9d900c1f39e1780f28abb13e5f26e Mon Sep 17 00:00:00 2001 From: codepuncher Date: Thu, 8 Feb 2024 10:02:11 +0000 Subject: [PATCH 1/3] bump `actions/checkout` to v4 --- .github/workflows/ci-mu-plugin.yml | 2 +- .github/workflows/ci-theme.yml | 6 +++--- .github/workflows/trellis-deploy.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-mu-plugin.yml b/.github/workflows/ci-mu-plugin.yml index 966791a..3e8ef48 100644 --- a/.github/workflows/ci-mu-plugin.yml +++ b/.github/workflows/ci-mu-plugin.yml @@ -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 diff --git a/.github/workflows/ci-theme.yml b/.github/workflows/ci-theme.yml index a66c1c4..d713ca9 100644 --- a/.github/workflows/ci-theme.yml +++ b/.github/workflows/ci-theme.yml @@ -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: | @@ -52,7 +52,7 @@ 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 @@ -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 diff --git a/.github/workflows/trellis-deploy.yml b/.github/workflows/trellis-deploy.yml index c5be34a..3747869 100644 --- a/.github/workflows/trellis-deploy.yml +++ b/.github/workflows/trellis-deploy.yml @@ -62,7 +62,7 @@ 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 @@ -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 From 8a1e3b35e0841b668f7d1234b5908f20f69a251b Mon Sep 17 00:00:00 2001 From: codepuncher Date: Thu, 8 Feb 2024 10:02:42 +0000 Subject: [PATCH 2/3] bump `actions/cache` to v4 --- .github/workflows/ci-mu-plugin.yml | 2 +- .github/workflows/ci-theme.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-mu-plugin.yml b/.github/workflows/ci-mu-plugin.yml index 3e8ef48..a0293bc 100644 --- a/.github/workflows/ci-mu-plugin.yml +++ b/.github/workflows/ci-mu-plugin.yml @@ -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 diff --git a/.github/workflows/ci-theme.yml b/.github/workflows/ci-theme.yml index d713ca9..c41fa12 100644 --- a/.github/workflows/ci-theme.yml +++ b/.github/workflows/ci-theme.yml @@ -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 From 816e681feaef0c709506244b2d5023896f70977c Mon Sep 17 00:00:00 2001 From: codepuncher Date: Thu, 8 Feb 2024 10:03:11 +0000 Subject: [PATCH 3/3] bump `actions/setup-node` to v4 --- .github/workflows/ci-theme.yml | 2 +- .github/workflows/trellis-deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-theme.yml b/.github/workflows/ci-theme.yml index c41fa12..54f1b02 100644 --- a/.github/workflows/ci-theme.yml +++ b/.github/workflows/ci-theme.yml @@ -55,7 +55,7 @@ jobs: - 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 diff --git a/.github/workflows/trellis-deploy.yml b/.github/workflows/trellis-deploy.yml index 3747869..f934ca1 100644 --- a/.github/workflows/trellis-deploy.yml +++ b/.github/workflows/trellis-deploy.yml @@ -67,7 +67,7 @@ jobs: 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 }}"