Skip to content

Commit

Permalink
ci: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewPattell committed Mar 6, 2024
1 parent 3b85b3e commit c048bbb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
docker-tag: ${{ steps.other-params.outputs.docker-tag }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 30

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
uses: tj-actions/changed-files@v42
with:
json: true
dir_names: true
Expand All @@ -65,13 +65,13 @@ jobs:
ONLY: ${{ needs.changed-microservices.outputs.microservices-spaced }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '18.13.0'
node-version: '18.19.0'
cache: 'npm'

- name: Install global dependencies
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc

Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
WORK_DIR: "microservices/${{ matrix.microservice }}"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
microservices: ${{ steps.microservices.outputs.list }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
uses: tj-actions/changed-files@v42
with:
json: true
dir_names: true
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Commit lint
run: |
Expand All @@ -56,7 +56,7 @@ jobs:
MICROSERVICE_NAME: ${{ matrix.microservice }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc

Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
WORK_DIR: "microservices/${{ matrix.microservice }}"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.13.0
18.19.0

0 comments on commit c048bbb

Please sign in to comment.