Skip to content

Commit

Permalink
chore(workflows): pin actions/checkout action vv2.4.0
Browse files Browse the repository at this point in the history
| datasource  | package          | from   | to     |
| ----------- | ---------------- | ------ | ------ |
| github-tags | actions/checkout | v2.3.4 | v2.4.0 |
| github-tags | actions/checkout | v2.3.4 | v2.4.0 |
| github-tags | actions/checkout | v2.3.4 | v2.4.0 |
| github-tags | actions/checkout | v2.3.4 | v2.4.0 |
  • Loading branch information
renovate-bot committed Nov 2, 2021
1 parent 8eef3e5 commit 287cd52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 287cd52

Please sign in to comment.