Skip to content

Commit

Permalink
Merge pull request #378 from ConvertKit/tests-update-actions-node-16
Browse files Browse the repository at this point in the history
GitHub Actions: Bump `actions` dependencies to versions that use Node 16
  • Loading branch information
n7studios authored Oct 27, 2022
2 parents 2c0645d + 1effed3 commit 27df3a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

# Checkout (copy) this repository's Plugin to this VM.
- name: Checkout Plugin
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: ${{ env.PLUGIN_DIR }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# Checkout (copy) this repository's Plugin to this VM.
- name: Checkout Plugin
uses: actions/checkout@v2
uses: actions/checkout@v3

# Installs required packages that must be included in the Plugin
# as specified in composer.json's "require" section.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

# Checkout (copy) this repository's Plugin to this VM.
- name: Checkout Plugin
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: ${{ env.PLUGIN_DIR }}

Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
# Make sure your committed .env.dist.testing file ends with a newline.
# The formatting of the contents to include a blank newline is deliberate.
- name: Define GitHub Secrets in .env.dist.testing
uses: DamianReeves/write-file-action@v1.0
uses: DamianReeves/write-file-action@v1.1
with:
path: ${{ env.PLUGIN_DIR }}/.env.dist.testing
contents: |
Expand Down Expand Up @@ -214,14 +214,14 @@ jobs:
# because we want to see why a test failed.
- name: Upload Test Results to Artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: test-results
path: ${{ env.PLUGIN_DIR }}/tests/_output/

- name: Upload Plugin Log File to Artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: log.txt
path: ${{ env.PLUGIN_DIR }}/log.txt

0 comments on commit 27df3a4

Please sign in to comment.