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(workflows): pin actions/checkout action vv2.7.0 #111

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/code.yaml
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.4.0
- name: Install yarn dependencies
run: yarn install --frozen-lockfile
- name: Lint code
Expand All @@ -47,7 +47,7 @@ jobs:
needs: test
steps:
- name: Checkout git repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.4.0
- name: Clean old release drafts
run: hub release -f "%T (%S) %n" --include-drafts | grep " (draft)" | awk '{print $1}' | xargs --no-run-if-empty -t -n1 hub release delete
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Expand Up @@ -6,7 +6,7 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
- name: Set release version
id: vars
run: echo ::set-output name=tag::$(echo ${{ github.event.release.tag_name }} | cut -d "v" -f 2)
Expand All @@ -28,7 +28,7 @@ jobs:
publish-github:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
- name: Set release version
id: vars
run: echo ::set-output name=tag::$(echo ${{ github.event.release.tag_name }} | cut -d "v" -f 2)
Expand Down