Skip to content

Commit

Permalink
chore(ci): bump GH action versions (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis authored Jan 15, 2025
1 parent 582740e commit fb69f76
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
build-test-publish:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@v4 # v4
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}

- name: "Setup node with cache"
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'yarn'

- run: yarn install --frozen-lockfile
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ jobs:
build-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@v4 # v4
with:
fetch-depth: 0
- name: "Setup node with cache"
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: yarn

- run: yarn install --frozen-lockfile
Expand All @@ -19,6 +19,7 @@ jobs:
- run: yarn run test:ci

- name: "Upload coverage reports"
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true

0 comments on commit fb69f76

Please sign in to comment.