Skip to content

Commit 690a2b4

Browse files
chore(deps): update google-github-actions/release-please-action action to v4 (#86)
Signed-off-by: Simon Schrottner <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Simon Schrottner <[email protected]>
1 parent 4233c92 commit 690a2b4

File tree

2 files changed

+66
-78
lines changed

2 files changed

+66
-78
lines changed

.github/workflows/release-please.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,14 @@ jobs:
1919
contents: write # for google-github-actions/release-please-action to create release commit
2020
pull-requests: write # for google-github-actions/release-please-action to create release PR
2121
runs-on: ubuntu-latest
22-
2322
# Release-please creates a PR that tracks all changes
2423
steps:
25-
- uses: google-github-actions/release-please-action@db8f2c60ee802b3748b512940dde88eabd7b7e01 # v3
24+
- uses: google-github-actions/release-please-action@v4
2625
id: release
2726
with:
28-
command: manifest
27+
config-file: .release-please-config.json
28+
manifest-file: .release-please-manifest.json
2929
token: ${{secrets.RELEASE_PLEASE_ACTION_TOKEN}}
30-
default-branch: main
31-
signoff: "OpenFeature Bot <[email protected]>"
3230
outputs:
3331
release_created: ${{ steps.release.outputs.release_created }}
3432
release_tag_name: ${{ steps.release.outputs.tag_name }}
@@ -44,14 +42,12 @@ jobs:
4442
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
4543
with:
4644
ref: ${{ needs.release-please.outputs.release_tag_name }}
47-
4845
- name: Log in to the Container registry
4946
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
5047
with:
5148
registry: ${{ env.REGISTRY }}
5249
username: ${{ github.actor }}
5350
password: ${{ secrets.GITHUB_TOKEN }}
54-
5551
- name: Build and push flagd-testbed Docker image
5652
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
5753
with:
@@ -61,7 +57,4 @@ jobs:
6157
push: true
6258
tags: |
6359
${{ env.REGISTRY }}/open-feature/${{ env.FLAGD_IMAGE_NAME }}:${{ needs.release-please.outputs.release_tag_name }}
64-
${{ env.REGISTRY }}/open-feature/${{ env.FLAGD_IMAGE_NAME }}:latest
65-
66-
67-
60+
${{ env.REGISTRY }}/open-feature/${{ env.FLAGD_IMAGE_NAME }}:latest

release-please-config.json

Lines changed: 62 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,64 @@
11
{
2-
"bootstrap-sha": "cb6c1dc1a32e0f5383e5119c0d8389000750f511",
3-
"packages": {
4-
".": {
5-
"release-type": "simple",
6-
"prerelease": false,
7-
"bump-minor-pre-major": true,
8-
"bump-patch-for-minor-pre-major": true,
9-
"include-v-in-tag": true,
10-
"extra-files": [
11-
"docker-compose.yaml"
12-
],
13-
"changelog-sections": [
14-
{
15-
"type": "fix",
16-
"section": "🐛 Bug Fixes"
17-
},
18-
{
19-
"type": "feat",
20-
"section": "✨ New Features"
21-
},
22-
{
23-
"type": "chore",
24-
"section": "🧹 Chore"
25-
},
26-
{
27-
"type": "docs",
28-
"section": "📚 Documentation"
29-
},
30-
{
31-
"type": "perf",
32-
"section": "🚀 Performance"
33-
},
34-
{
35-
"type": "build",
36-
"hidden": true,
37-
"section": "🛠️ Build"
38-
},
39-
{
40-
"type": "deps",
41-
"section": "📦 Dependencies"
42-
},
43-
{
44-
"type": "ci",
45-
"hidden": true,
46-
"section": "🚦 CI"
47-
},
48-
{
49-
"type": "refactor",
50-
"section": "🔄 Refactoring"
51-
},
52-
{
53-
"type": "revert",
54-
"section": "🔙 Reverts"
55-
},
56-
{
57-
"type": "style",
58-
"hidden": true,
59-
"section": "🎨 Styling"
60-
},
61-
{
62-
"type": "test",
63-
"hidden": true,
64-
"section": "🧪 Tests"
65-
}
66-
]
2+
"release-type": "simple",
3+
"prerelease": false,
4+
"bump-minor-pre-major": true,
5+
"bump-patch-for-minor-pre-major": true,
6+
"include-v-in-tag": true,
7+
"extra-files": [
8+
"docker-compose.yaml"
9+
],
10+
"changelog-sections": [
11+
{
12+
"type": "fix",
13+
"section": "🐛 Bug Fixes"
14+
},
15+
{
16+
"type": "feat",
17+
"section": "✨ New Features"
18+
},
19+
{
20+
"type": "chore",
21+
"section": "🧹 Chore"
22+
},
23+
{
24+
"type": "docs",
25+
"section": "📚 Documentation"
26+
},
27+
{
28+
"type": "perf",
29+
"section": "🚀 Performance"
30+
},
31+
{
32+
"type": "build",
33+
"hidden": true,
34+
"section": "🛠️ Build"
35+
},
36+
{
37+
"type": "deps",
38+
"section": "📦 Dependencies"
39+
},
40+
{
41+
"type": "ci",
42+
"hidden": true,
43+
"section": "🚦 CI"
44+
},
45+
{
46+
"type": "refactor",
47+
"section": "🔄 Refactoring"
48+
},
49+
{
50+
"type": "revert",
51+
"section": "🔙 Reverts"
52+
},
53+
{
54+
"type": "style",
55+
"hidden": true,
56+
"section": "🎨 Styling"
57+
},
58+
{
59+
"type": "test",
60+
"hidden": true,
61+
"section": "🧪 Tests"
6762
}
68-
}
69-
}
63+
]
64+
}

0 commit comments

Comments
 (0)