Skip to content

Commit 6bb773b

Browse files
authored
Merge pull request #219 from pusher/fix-ci
Update checkout action
2 parents 7d9c7e2 + 2d420bd commit 6bb773b

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout code
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
1313
- name: Prepare tag
@@ -35,7 +35,7 @@ jobs:
3535
needs: check-release-tag
3636
if: ${{ needs.check-release-tag.outputs.tag }}
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v4
3939
- name: Prepare tag
4040
run: |
4141
export TAG=v$(jq -r '.version' package.json)
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
needs: create-github-release
6565
steps:
66-
- uses: actions/checkout@v2
66+
- uses: actions/checkout@v4
6767
- uses: flood-io/is-published-on-npm@8478347e2650eb228d303975415458183d0a37e4
6868
id: is-published
6969
- run: echo "This version is already published on NPM"

.github/workflows/release_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
name: Prepare release
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
- name: Get current version
1616
shell: bash
1717
run: |
1818
CURRENT_VERSION=$(jq -r '.version' package.json)
1919
echo "CURRENT_VERSION=$CURRENT_VERSION" >> $GITHUB_ENV
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
with:
2222
repository: pusher/actions
2323
token: ${{ secrets.PUSHER_CI_GITHUB_PRIVATE_TOKEN }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
test:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
strategy:
1212
fail-fast: false
1313
matrix:
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121

2222
- name: Setup Node.js
2323
uses: actions/setup-node@v2

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

3+
## 5.3.0
4+
5+
- [CHANGED] Describe your change here. Look at CHANGELOG.md to see the format.
6+
37
## 5.2.0
48

5-
- [CHANGED] Remove old notification references. It's no longer being used
9+
- [CHANGED] Remove old notification references. It's no longer being used
610

711
## 5.1.3
812

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pusher",
33
"description": "Node.js client to interact with the Pusher Channels REST API",
4-
"version": "5.2.0",
4+
"version": "5.3.0",
55
"author": "Pusher <[email protected]>",
66
"contributors": [
77
{

0 commit comments

Comments
 (0)