Skip to content

Commit

Permalink
GitHub Actions: use v4 actions (#106)
Browse files Browse the repository at this point in the history
* GitHub Actions use v4 actions

* Update upload-artifact

* Try to fix upload artifact
  • Loading branch information
t-hamano authored Mar 8, 2024
1 parent 98827b7 commit 9179e2b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:

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

- name: Use desired version of Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

Expand Down Expand Up @@ -71,10 +71,10 @@ jobs:
needs: [test]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use desired version of Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:

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

- name: Use desired version of Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

Expand Down Expand Up @@ -74,9 +74,9 @@ jobs:
run: npm run test:e2e

- name: Archive debug artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: failures-artifacts
name: failures-artifacts-${{ matrix.php }}-${{ matrix.wp }}
path: artifacts
if-no-files-found: ignore

0 comments on commit 9179e2b

Please sign in to comment.