Skip to content

Commit

Permalink
Update GHAs to use node-20-based reusable actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejalim committed Apr 7, 2024
1 parent 07a87ba commit 0fe87ef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-to-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
push-prod:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: git push
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-to-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
push-stage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: git push
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Python dependencies
run: |
pip install -r requirements/production.txt
pip install -r requirements/test.txt
- name: Set up Node
uses: actions/setup-node@v3.8.1
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install js dependencies and build assets
Expand All @@ -38,6 +38,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Ensure docker containers build
run: docker build .

0 comments on commit 0fe87ef

Please sign in to comment.