Skip to content

Commit

Permalink
Merge branch 'main' into use-node-20-in-gha-workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
alessbell authored Jan 29, 2024
2 parents 42be75b + cd2a07c commit 723147c
Show file tree
Hide file tree
Showing 6 changed files with 120 additions and 116 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

Lint:
docker:
- image: cimg/node:21.5.0
- image: cimg/node:21.6.1
steps:
- checkout
- run: npm version
Expand All @@ -24,15 +24,15 @@ jobs:

Formatting:
docker:
- image: cimg/node:21.5.0
- image: cimg/node:21.6.1
steps:
- checkout
- run: npm ci
- run: npm run check:format

Tests:
docker:
- image: cimg/node:21.5.0
- image: cimg/node:21.6.1
steps:
- checkout
- run: npm run ci:precheck
Expand All @@ -50,7 +50,7 @@ jobs:

BuildTarball:
docker:
- image: cimg/node:21.5.0
- image: cimg/node:21.6.1
steps:
- checkout
- run: npm run ci:precheck
Expand All @@ -67,7 +67,7 @@ jobs:
framework:
type: string
docker:
- image: cimg/node:21.5.0
- image: cimg/node:21.6.1
steps:
- checkout
- attach_workspace:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Check for pre.json file existence
id: check_files
uses: andstor/file-existence-action@v2.0.0
uses: andstor/file-existence-action@v3.0.0
with:
files: ".changeset/pre.json"

Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Send a Slack notification on publish
if: steps.changesets.outcome == 'success'
id: slack
uses: slackapi/slack-github-action@v1.24.0
uses: slackapi/slack-github-action@v1.25.0
with:
# Slack channel id, channel name, or user id to post message
# See also: https://api.slack.com/methods/chat.postMessage#channels
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Check for pre.json file existence
id: check_files
uses: andstor/file-existence-action@v2.0.0
uses: andstor/file-existence-action@v3.0.0
with:
files: ".changeset/pre.json"

Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Send a Slack notification on publish
if: steps.changesets.outcome == 'success' && steps.changesets.outputs.published == 'true'
id: slack
uses: slackapi/slack-github-action@v1.24.0
uses: slackapi/slack-github-action@v1.25.0
with:
# Slack channel id, channel name, or user id to post message
# See also: https://api.slack.com/methods/chat.postMessage#channels
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/snapshot-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:

- name: Check for pre.json file existence
id: check_files
uses: andstor/file-existence-action@v2.0.0
uses: andstor/file-existence-action@v3.0.0
with:
files: ".changeset/pre.json"

Expand All @@ -80,7 +80,7 @@ jobs:

- name: Add comment if no new changesets exist
if: ${{ steps.added-files.outputs.changesets == '' }}
uses: peter-evans/create-or-update-comment@v3.1.0
uses: peter-evans/create-or-update-comment@v4.0.0
with:
issue-number: ${{ github.event.issue.number }}
body: |
Expand All @@ -106,7 +106,7 @@ jobs:

- name: Create comment
if: ${{ steps.added-files.outputs.changesets != '' }}
uses: peter-evans/create-or-update-comment@v3.1.0
uses: peter-evans/create-or-update-comment@v4.0.0
with:
issue-number: ${{ github.event.issue.number }}
body: |
Expand Down
Loading

0 comments on commit 723147c

Please sign in to comment.