Skip to content

Commit

Permalink
Merge pull request #237 from duplocloud/DUPLO-16654/update-gha
Browse files Browse the repository at this point in the history
DUPLO 16654 Node@20 Upgrade
  • Loading branch information
mick-duplocloud authored May 8, 2024
2 parents 52cf8a1 + 4e9625c commit da504ec
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
runs-on: ubuntu-latest

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

- name: Use Node.js 20.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/finish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master # Always finish releases from the "merged to" master
fetch-depth: 0
Expand All @@ -41,7 +41,7 @@ jobs:
- finish-release
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false # Needed so we can push with different credentials.
Expand All @@ -54,7 +54,7 @@ jobs:
git config --global user.name $git_user &&
git config --global user.email $git_email
- name: Use Node.js 20.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Version bump
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/start-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: develop # Always release from develop
fetch-depth: 0
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
git config --global user.name $git_user &&
git config --global user.email $git_email
- name: Use Node.js 20.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Start gitflow release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x
- run: |
Expand All @@ -25,7 +25,7 @@ jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
tenant: ${{ env.duplo_tenant_id }}
Expand Down

0 comments on commit da504ec

Please sign in to comment.