-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SFR-2741: Run CI via Github Actions #505
Conversation
.github/workflows/ci.yaml
Outdated
AWS_SECRET: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
ENVIRONMENT: qa | ||
steps: | ||
- uses: actions/checkout@v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should use checkout@v4 since v2 is running on a deprecated version of node.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch - upgrading!
.github/workflows/ci.yaml
Outdated
with: | ||
python-version: '3.9' | ||
- name: Cache dependencies | ||
uses: actions/cache@v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cache@v2 will be deprecated next month
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ooop upgrading!
Description