Skip to content

Commit

Permalink
Update Node version in actions/checkout (#864)
Browse files Browse the repository at this point in the history
Addresses a deprecation warning in our CI workflows: 
```
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
```
  • Loading branch information
camillevilla authored May 1, 2024
1 parent 268f648 commit 4088d19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
image: selenium/standalone-chrome:latest
ports: ["4444:4444"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit 4088d19

Please sign in to comment.