Skip to content

Commit

Permalink
Update GitHub actions to remediate Node.js 12 deprecation (#115)
Browse files Browse the repository at this point in the history
Co-authored-by: ckulka <ckulka@wlgore.com>
  • Loading branch information
ckulka and ckulka authored Dec 22, 2022
1 parent e19ff0e commit 7fe3a4e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# See https://github.com/docker/setup-qemu-action
- name: Set up QEMU
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# See https://github.com/docker/setup-qemu-action
- name: Set up QEMU
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# See https://github.com/docker/setup-qemu-action
- name: Set up QEMU
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# See https://github.com/docker/setup-qemu-action
- name: Set up QEMU
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- .github/workflows/docker-test.yml
- "*.dockerfile"
- cypress/*
- cypress.json
- cypress.config.ts
- files/*
- package.json
- package-lock.json
Expand All @@ -17,7 +17,7 @@ on:
- .github/workflows/docker-test.yml
- "*.dockerfile"
- cypress/*
- cypress.json
- cypress.config.ts
- files/*
- package.json
- package-lock.json
Expand All @@ -32,9 +32,9 @@ jobs:
dockerfile: [apache, apache-php8.0, nginx, nginx-php8.0]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: "16"

Expand All @@ -49,7 +49,9 @@ jobs:

- name: Archive test results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: cypress-results-${{ matrix.dockerfile }}
path: cypress/videos
path: |
cypress/screenshots
cypress/videos
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v2
Expand Down

0 comments on commit 7fe3a4e

Please sign in to comment.