@flowfuse/driver-docker 2.32.0 → 2.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,9 +10,9 @@ jobs:
10
10
  build:
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
- - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
13
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
14
14
  - name: Use Node.js 24
15
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
15
+ uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
16
16
  with:
17
17
  node-version: 24
18
18
  - name: Install Dependencies
@@ -8,11 +8,31 @@ jobs:
8
8
  publish:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
12
- - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
11
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
12
+ - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
13
13
  with:
14
14
  node-version: 24
15
15
  - run: npm ci --omit dev
16
16
  - uses: JS-DevTools/npm-publish@0fd2f4369c5d6bcfcde6091a7c527d810b9b5c3f # v4.1.5
17
17
  with:
18
18
  token: ${{ secrets.NPM_PUBLISH_TOKEN }}
19
+
20
+ notify-slack:
21
+ name: Notify about release failure
22
+ needs: [publish]
23
+ if: failure()
24
+ runs-on: ubuntu-latest
25
+
26
+ steps:
27
+ - name: Notify Slack
28
+ uses: FlowFuse/github-actions-workflows/actions/slack_notification@slack_notification/v1
29
+ with:
30
+ bot-token: ${{ secrets.SLACK_GHBOT_TOKEN }}
31
+ mode: channel
32
+ blocks: |
33
+ [
34
+ { "type": "header", "text": { "type": "plain_text", "text": ":x: ${{ github.workflow }} workflow failed", "emoji": true } },
35
+ { "type": "divider" },
36
+ { "type": "section", "text": { "type": "mrkdwn", "text": "<${{ github.server_url }}/${{ github.repository }}/actions/workflows/release-publish.yml|${{ github.workflow }}> workflow failed to complete successfully." } },
37
+ { "type": "section", "text": { "type": "mrkdwn", "text": "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" } }
38
+ ]
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ #### 2.33.0: Release
2
+
3
+ - Bump actions/checkout from 7.0.0 to 7.0.1 (#231)
4
+ - Bump actions/setup-node from 6.4.0 to 7.0.0 (#229)
5
+
6
+ #### 2.32.1: Release
7
+
8
+ - ci: Add slack notification to the release pipeline (#228)
9
+
1
10
  #### 2.32.0: Release
2
11
 
3
12
  - feat: Add Insights support with get-features and call-tool/read-resource methods (#226)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/driver-docker",
3
- "version": "2.32.0",
3
+ "version": "2.33.0",
4
4
  "description": "Docker driver for FlowFuse",
5
5
  "main": "docker.js",
6
6
  "scripts": {