Skip to content

Commit

Permalink
feat(ci): update to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
ftoromanoff committed Oct 24, 2024
1 parent f5e0a65 commit 3611195
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
steps:

# Use specific Node.js version
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
Expand Down Expand Up @@ -84,11 +84,11 @@ jobs:
steps:

# Use specific Node.js version
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 22.x
cache: 'npm'

# Install packages
Expand All @@ -114,11 +114,11 @@ jobs:
steps:

# Use specific Node.js version
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 22.x
cache: 'npm'

# Install packages
Expand Down Expand Up @@ -149,15 +149,15 @@ jobs:
contents: write
steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# fetch all branches
fetch-depth: 0

# Configure git user for later command induced commits
- uses: fregante/setup-git-user@v1

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
Expand Down Expand Up @@ -261,12 +261,12 @@ jobs:
runs-on: ubuntu-latest
steps:

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

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

- name: Message commit
run: echo "is RELEASE => ${{ github.event.head_commit.message }} !!"
Expand Down

0 comments on commit 3611195

Please sign in to comment.