@emartech/program-executor 3.13.0 → 3.15.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.
@@ -1,9 +1,13 @@
1
1
  name: CI
2
2
 
3
- on: [push]
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
4
8
 
5
9
  env:
6
- NPM_TOKEN: ${{ secrets.NPM_PUBLISHER_TOKEN }}
10
+ NPM_TOKEN: ${{ github.actor == 'dependabot[bot]' && secrets.NPM_DEPLOYER_TOKEN || secrets.NPM_PUBLISHER_TOKEN }}
7
11
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
8
12
  CI_REPO_NAME: ${{ github.repository }}
9
13
  CI_COMMIT_ID: ${{ github.sha }}
@@ -56,6 +60,19 @@ jobs:
56
60
  PUBSUB_PROJECT_ID: some-project-id
57
61
  PUBSUB_TIMEOUT: 2000
58
62
 
63
+ dependabot-auto-merge:
64
+ if: ${{ vars.DEPENDABOT_AUTO_MERGE == 'true' }}
65
+
66
+ needs: test
67
+ runs-on: ubuntu-latest
68
+
69
+ permissions:
70
+ pull-requests: write
71
+ contents: write
72
+
73
+ steps:
74
+ - uses: fastify/github-action-merge-dependabot@v3
75
+
59
76
  deploy:
60
77
  name: deploy
61
78
  needs: [test]
package/package.json CHANGED
@@ -19,25 +19,25 @@
19
19
  "author": "team-shopify@emarsys.com",
20
20
  "license": "ISC",
21
21
  "dependencies": {
22
- "@emartech/json-logger": "9.1.0",
23
- "@emartech/pubsub-client-js": "^1.2.7",
24
- "@emartech/rabbitmq-client": "5.9.1",
22
+ "@emartech/json-logger": "9.2.0",
23
+ "@emartech/pubsub-client-js": "^1.5.0",
24
+ "@emartech/rabbitmq-client": "5.11.0",
25
25
  "camelcase-keys": "^6.2.2",
26
- "graphql": "^16.11.0"
26
+ "graphql": "^16.12.0"
27
27
  },
28
28
  "engines": {
29
29
  "node": "20.18.0"
30
30
  },
31
31
  "devDependencies": {
32
- "dotenv": "^17.2.1",
33
- "eslint": "^9.34.0",
32
+ "dotenv": "^17.2.3",
33
+ "eslint": "^9.39.1",
34
34
  "eslint-config-emarsys": "5.1.0",
35
35
  "eslint-plugin-no-only-tests": "^3.3.0",
36
36
  "eslint-plugin-security": "^3.0.1",
37
37
  "jest": "29.0.0",
38
38
  "knex": "^3.1.0",
39
39
  "pg": "^8.16.3",
40
- "semantic-release": "^24.2.0"
40
+ "semantic-release": "^25.0.2"
41
41
  },
42
- "version": "3.13.0"
42
+ "version": "3.15.0"
43
43
  }