Skip to content

Commit

Permalink
Update actions/checkout
Browse files Browse the repository at this point in the history
This dependency was relying on node v16, which github are deprecating
support for.

This will resolve the issue for one of the actions listed here

```
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
eloisetaylor5693 committed Feb 21, 2024
1 parent dd9e37c commit 5c0ab4c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec rspec
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec rspec

0 comments on commit 5c0ab4c

Please sign in to comment.