Skip to content

Commit 508b201

Browse files
author
asyncapi-bot
committed
ci: update of files from global .github repo
1 parent bb2979a commit 508b201

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout repo
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
- name: Check if Node.js project and has package.json
2525
id: packagejson
2626
run: test -e ./package.json && echo "exists=true" >> $GITHUB_OUTPUT || echo "exists=false" >> $GITHUB_OUTPUT

.github/workflows/if-nodejs-release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
runs-on: ${{ matrix.os }}
3434
strategy:
3535
matrix:
36-
os: [ubuntu-latest, macos-latest, windows-latest]
36+
# Using macos-13 instead of latest (macos-14) due to an issue with Puppeteer and such runner.
37+
# See: https://github.com/puppeteer/puppeteer/issues/12327 and https://github.com/asyncapi/parser-js/issues/1001
38+
os: [ubuntu-latest, macos-13, windows-latest]
3739
steps:
3840
- name: Set git to use LF #to once and for all finish neverending fight between Unix and Windows
3941
run: |
@@ -69,7 +71,7 @@ jobs:
6971
run: npm test --if-present
7072
- if: failure() # Only, on failure, send a message on the 94_bot-failing-ci slack channel
7173
name: Report workflow run status to Slack
72-
uses: 8398a7/action-slack@v3
74+
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 #using https://github.com/8398a7/action-slack/releases/tag/v3.16.2
7375
with:
7476
status: ${{ job.status }}
7577
fields: repo,action,workflow
@@ -123,7 +125,7 @@ jobs:
123125
run: npx semantic-release@19.0.4
124126
- if: failure() # Only, on failure, send a message on the 94_bot-failing-ci slack channel
125127
name: Report workflow run status to Slack
126-
uses: 8398a7/action-slack@v3
128+
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 #using https://github.com/8398a7/action-slack/releases/tag/v3.16.2
127129
with:
128130
status: ${{ job.status }}
129131
fields: repo,action,workflow

.github/workflows/if-nodejs-version-bump.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
# target branch of release. More info https://docs.github.com/en/rest/reference/repos#releases
2121
# in case release is created from release branch then we need to checkout from given branch
@@ -30,7 +30,7 @@ jobs:
3030
id: lockversion
3131
- if: steps.packagejson.outputs.exists == 'true'
3232
name: Setup Node.js
33-
uses: actions/setup-node@v3
33+
uses: actions/setup-node@v4
3434
with:
3535
node-version: "${{ steps.lockversion.outputs.version }}"
3636
cache: 'npm'
@@ -60,7 +60,7 @@ jobs:
6060
branch: version-bump/${{github.event.release.tag_name}}
6161
- if: failure() # Only, on failure, send a message on the 94_bot-failing-ci slack channel
6262
name: Report workflow run status to Slack
63-
uses: 8398a7/action-slack@v3
63+
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 #using https://github.com/8398a7/action-slack/releases/tag/v3.16.2
6464
with:
6565
status: ${{ job.status }}
6666
fields: repo,action,workflow

0 commit comments

Comments
 (0)