Skip to content

Commit 7bbfa09

Browse files
authored
v4.0.0-beta.442 (#7130)
2 parents c7b2976 + f005602 commit 7bbfa09

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2080
-539
lines changed

.github/workflows/chore-lock-closed-issues-discussions-and-prs.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ on:
44
schedule:
55
- cron: '0 1 * * *'
66

7+
permissions:
8+
issues: write
9+
discussions: write
10+
pull-requests: write
11+
712
jobs:
813
lock-threads:
914
runs-on: ubuntu-latest
@@ -13,5 +18,5 @@ jobs:
1318
with:
1419
github-token: ${{ secrets.GITHUB_TOKEN }}
1520
issue-inactive-days: '30'
16-
pr-inactive-days: '30'
1721
discussion-inactive-days: '30'
22+
pr-inactive-days: '30'

.github/workflows/chore-manage-stale-issues-and-prs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
schedule:
55
- cron: '0 2 * * *'
66

7+
permissions:
8+
issues: write
9+
pull-requests: write
10+
711
jobs:
812
manage-stale:
913
runs-on: ubuntu-latest

.github/workflows/chore-pr-comments.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,13 @@ on:
33
pull_request_target:
44
types:
55
- labeled
6+
7+
permissions:
8+
pull-requests: write
9+
610
jobs:
711
add-comment:
812
runs-on: ubuntu-latest
9-
permissions:
10-
pull-requests: write
11-
contents: read
12-
actions: none
13-
checks: none
14-
deployments: none
15-
issues: none
16-
packages: none
17-
repository-projects: none
18-
security-events: none
19-
statuses: none
2013
strategy:
2114
matrix:
2215
include:

.github/workflows/chore-remove-labels-and-assignees-on-close.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
pull_request_target:
99
types: [closed]
1010

11+
permissions:
12+
issues: write
13+
pull-requests: write
14+
1115
jobs:
1216
remove-labels-and-assignees:
1317
runs-on: ubuntu-latest

.github/workflows/claude-code-review.yml

Lines changed: 0 additions & 79 deletions
This file was deleted.

.github/workflows/claude.yml

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/cleanup-ghcr-untagged.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
name: Cleanup Untagged GHCR Images
22

33
on:
4-
workflow_dispatch: # Manual trigger only
4+
workflow_dispatch:
55

6-
env:
7-
GITHUB_REGISTRY: ghcr.io
6+
permissions:
7+
packages: write
88

99
jobs:
1010
cleanup-all-packages:
1111
runs-on: ubuntu-latest
12-
permissions:
13-
contents: read
14-
packages: write
1512
strategy:
1613
matrix:
1714
package: ['coolify', 'coolify-helper', 'coolify-realtime', 'coolify-testing-host']

.github/workflows/coolify-helper-next.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- .github/workflows/coolify-helper-next.yml
88
- docker/coolify-helper/Dockerfile
99

10+
permissions:
11+
contents: read
12+
packages: write
13+
1014
env:
1115
GITHUB_REGISTRY: ghcr.io
1216
DOCKER_REGISTRY: docker.io
@@ -15,11 +19,10 @@ env:
1519
jobs:
1620
amd64:
1721
runs-on: ubuntu-latest
18-
permissions:
19-
contents: read
20-
packages: write
2122
steps:
22-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
24+
with:
25+
persist-credentials: false
2326

2427
- name: Login to ${{ env.GITHUB_REGISTRY }}
2528
uses: docker/login-action@v3
@@ -54,11 +57,10 @@ jobs:
5457
coolify.managed=true
5558
aarch64:
5659
runs-on: [ self-hosted, arm64 ]
57-
permissions:
58-
contents: read
59-
packages: write
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
62+
with:
63+
persist-credentials: false
6264

6365
- name: Login to ${{ env.GITHUB_REGISTRY }}
6466
uses: docker/login-action@v3
@@ -94,12 +96,12 @@ jobs:
9496
9597
merge-manifest:
9698
runs-on: ubuntu-latest
97-
permissions:
98-
contents: read
99-
packages: write
10099
needs: [ amd64, aarch64 ]
101100
steps:
102-
- uses: actions/checkout@v4
101+
- uses: actions/checkout@v5
102+
with:
103+
persist-credentials: false
104+
103105
- uses: docker/setup-buildx-action@v3
104106

105107
- name: Login to ${{ env.GITHUB_REGISTRY }}

.github/workflows/coolify-helper.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- .github/workflows/coolify-helper.yml
88
- docker/coolify-helper/Dockerfile
99

10+
permissions:
11+
contents: read
12+
packages: write
13+
1014
env:
1115
GITHUB_REGISTRY: ghcr.io
1216
DOCKER_REGISTRY: docker.io
@@ -15,11 +19,10 @@ env:
1519
jobs:
1620
amd64:
1721
runs-on: ubuntu-latest
18-
permissions:
19-
contents: read
20-
packages: write
2122
steps:
22-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
24+
with:
25+
persist-credentials: false
2326

2427
- name: Login to ${{ env.GITHUB_REGISTRY }}
2528
uses: docker/login-action@v3
@@ -54,11 +57,10 @@ jobs:
5457
coolify.managed=true
5558
aarch64:
5659
runs-on: [ self-hosted, arm64 ]
57-
permissions:
58-
contents: read
59-
packages: write
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
62+
with:
63+
persist-credentials: false
6264

6365
- name: Login to ${{ env.GITHUB_REGISTRY }}
6466
uses: docker/login-action@v3
@@ -93,12 +95,11 @@ jobs:
9395
coolify.managed=true
9496
merge-manifest:
9597
runs-on: ubuntu-latest
96-
permissions:
97-
contents: read
98-
packages: write
9998
needs: [ amd64, aarch64 ]
10099
steps:
101-
- uses: actions/checkout@v4
100+
- uses: actions/checkout@v5
101+
with:
102+
persist-credentials: false
102103

103104
- uses: docker/setup-buildx-action@v3
104105

.github/workflows/coolify-production-build.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ on:
1414
- templates/**
1515
- CHANGELOG.md
1616

17+
permissions:
18+
contents: read
19+
packages: write
20+
1721
env:
1822
GITHUB_REGISTRY: ghcr.io
1923
DOCKER_REGISTRY: docker.io
@@ -23,7 +27,9 @@ jobs:
2327
amd64:
2428
runs-on: ubuntu-latest
2529
steps:
26-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
31+
with:
32+
persist-credentials: false
2733

2834
- name: Login to ${{ env.GITHUB_REGISTRY }}
2935
uses: docker/login-action@v3
@@ -58,7 +64,9 @@ jobs:
5864
aarch64:
5965
runs-on: [self-hosted, arm64]
6066
steps:
61-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v5
68+
with:
69+
persist-credentials: false
6270

6371
- name: Login to ${{ env.GITHUB_REGISTRY }}
6472
uses: docker/login-action@v3
@@ -92,12 +100,11 @@ jobs:
92100
93101
merge-manifest:
94102
runs-on: ubuntu-latest
95-
permissions:
96-
contents: read
97-
packages: write
98103
needs: [amd64, aarch64]
99104
steps:
100-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v5
106+
with:
107+
persist-credentials: false
101108

102109
- uses: docker/setup-buildx-action@v3
103110

0 commit comments

Comments
 (0)