Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Upgrades CI workflow actions #458

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ jobs:
node-version: [20.x]

steps:
# https://github.com/actions/checkout/releases/tag/v2.7.0
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5
- name: Checkout
# https://github.com/actions/checkout/releases/tag/v4.1.7
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332

- name: Use Node.js ${{ matrix.node-version }}
# https://github.com/actions/setup-node/releases/tag/v1.4.6
uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e
# https://github.com/actions/setup-node/releases/tag/v4.0.2
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -43,8 +44,10 @@ jobs:
run: npm run test_integration

- name: Upload coverage
# https://github.com/codecov/codecov-action/releases/tag/v4.3.0
uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed
# https://github.com/codecov/codecov-action/releases/tag/v4.5.0
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673
with:
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Expand Down
16 changes: 10 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ jobs:
matrix:
node-version: [20.x]
steps:
# https://github.com/actions/checkout/releases/tag/v2.7.0
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5
- name: Checkout
# https://github.com/actions/checkout/releases/tag/v4.1.7
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332

- name: Use Node.js ${{ matrix.node-version }}
# https://github.com/actions/setup-node/releases/tag/v1.4.6
uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e
# https://github.com/actions/setup-node/releases/tag/v4.0.2
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -38,7 +40,9 @@ jobs:
run: npm run test

- name: Upload coverage
# https://github.com/codecov/codecov-action/releases/tag/v4.3.0
uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed
# https://github.com/codecov/codecov-action/releases/tag/v4.5.0
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673
with:
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Loading