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

Bump actions/checkout from 3 to 4 #37

Merged
merged 1 commit into from
Sep 5, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Node ${{ matrix.node }} test
steps:
- name: Git Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run linting rules and tests
uses: actions/setup-node@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: GitHub Tagging
steps:
- name: Git Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set application version
run: |
echo "PACKAGE=v$(echo `cat package.json | jq -r .version`)" >> $GITHUB_ENV
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
needs: [tagging]
steps:
- name: Git Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set application version
run: |
echo "PACKAGE=v$(echo `cat package.json | jq -r .version`)" >> $GITHUB_ENV
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
needs: [tagging, release]
steps:
- name: Git Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: NPM Release
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down