@codfish/actions-playground 4.2.0 → 4.3.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.
@@ -37,7 +37,7 @@ jobs:
37
37
  run: docker build -t codfish/actions-playground:latest .
38
38
 
39
39
  - name: semantic release dry run
40
- uses: docker://ghcr.io/codfish/semantic-release-action:v1
40
+ uses: docker://ghcr.io/codfish/semantic-release-action:v2
41
41
  id: semantic-dry-run
42
42
  with:
43
43
  dry_run: true
@@ -60,7 +60,7 @@ jobs:
60
60
  SEMANTIC_OUTPUTS: ${{ toJson(steps.semantic-dry-run.outputs) }}
61
61
 
62
62
  - name: semantic release
63
- uses: docker://ghcr.io/codfish/semantic-release-action:v1
63
+ uses: docker://ghcr.io/codfish/semantic-release-action:v2
64
64
  id: semantic
65
65
  with:
66
66
  branches: |
package/Dockerfile CHANGED
@@ -8,7 +8,7 @@ RUN npm ci
8
8
 
9
9
  COPY src src
10
10
 
11
- ENV RELEASE_VERSION=4.2.0
11
+ ENV RELEASE_VERSION=4.3.0
12
12
 
13
13
  RUN npm run build
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/actions-playground",
3
- "version": "4.2.0",
3
+ "version": "4.3.0",
4
4
  "description": "My own testing ground for messing around with GitHub Actions.",
5
5
  "main": "dist/index.js",
6
6
  "private": false,