Skip to content

Commit

Permalink
chore(CI): don't pin official github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stipsan committed May 22, 2023
1 parent aa8f330 commit dc08639
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
platform: [ubuntu-latest, macos-latest]
node-version: [lts/*, current]
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm i pnpm@latest -g
Expand All @@ -32,12 +32,12 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
- uses: actions/checkout@v3
with:
# Need to fetch entire commit history to
# analyze every commit since last release
fetch-depth: 0
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
- run: npm i pnpm@latest -g
Expand Down

1 comment on commit dc08639

@Jecjufv
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#69

Please sign in to comment.