Skip to content

Commit

Permalink
Merge pull request #479 from Greenstand/fix/github_actions
Browse files Browse the repository at this point in the history
fix: github actions
  • Loading branch information
Kpoke authored Sep 3, 2024
2 parents 213fceb + 879ccc6 commit 11fbbde
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/treetracker-wallet-api-build-deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
github.event_name == 'push' &&
github.repository == 'Greenstand/treetracker-wallet-api'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '20.x'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/treetracker-wallet-api-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: |
github.repository == 'Greenstand/treetracker-wallet-api'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.git-tag }}
- name: get-npm-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/treetracker-wallet-api-deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: |
github.repository == 'Greenstand/treetracker-wallet-api'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.git-tag }}
- name: get-npm-version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: |
github.repository == 'Greenstand/treetracker-wallet-api'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: v1.10
- name: get-npm-version
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/treetracker-wallet-api-pull-request-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build:
name: Run all tests
runs-on: ubuntu-latest
container: node:10.18-jessie
container: node:20.16.0-alpine3.20

# Service containers to run with `container-job`
services:
Expand All @@ -35,11 +35,11 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '20.x'
- name: npm clean install
run: npm ci
working-directory: ${{ env.project-directory }}
Expand Down

0 comments on commit 11fbbde

Please sign in to comment.