Skip to content

Commit 0942afc

Browse files
committed
TEST2
1 parent 1becf85 commit 0942afc

7 files changed

Lines changed: 0 additions & 94 deletions

File tree

.github/workflows/build-dev.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ on:
2727
jobs:
2828
build:
2929
uses: ./.github/workflows/build.yml
30-
permissions:
31-
contents: read
32-
# Azure login.
33-
id-token: write
3430
with:
3531
publishType: dev
3632
runFunctionalTests: ${{ inputs.runFunctionalTests || false }}

.github/workflows/build-main.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ on:
1313
jobs:
1414
build:
1515
uses: ./.github/workflows/build.yml
16-
permissions:
17-
contents: read
18-
# Azure login.
19-
id-token: write
2016
with:
2117
publishType: main
2218
runFunctionalTests: true

.github/workflows/build-preview.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ on:
1313
jobs:
1414
build:
1515
uses: ./.github/workflows/build.yml
16-
permissions:
17-
contents: read
18-
# Azure login.
19-
id-token: write
2016
with:
2117
publishType: preview
2218
runFunctionalTests: true

.github/workflows/build.yml

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,13 @@ jobs:
2525
binary-build-amd64:
2626
name: Build AMD64
2727
uses: ./.github/workflows/binary-build.yml
28-
permissions:
29-
contents: read
3028
with:
3129
publishType: ${{ inputs.publishType }}
3230
arch: amd64
3331

3432
binary-build-arm64:
3533
name: Build ARM64
3634
uses: ./.github/workflows/binary-build.yml
37-
permissions:
38-
contents: read
3935
with:
4036
publishType: ${{ inputs.publishType }}
4137
arch: arm64
@@ -47,10 +43,6 @@ jobs:
4743
name: Functional tests AZL3 AMD64
4844
if: ${{ inputs.runFunctionalTests }}
4945
uses: ./.github/workflows/tests-functional.yml
50-
permissions:
51-
contents: read
52-
# Azure login.
53-
id-token: write
5446
with:
5547
hostArch: amd64
5648
hostDistro: azl3
@@ -59,9 +51,6 @@ jobs:
5951
name: Functional tests AZL3 ARM64
6052
if: ${{ inputs.runFunctionalTests }}
6153
uses: ./.github/workflows/tests-functional.yml
62-
permissions:
63-
contents: read
64-
# Azure login.
6554
id-token: write
6655
with:
6756
hostArch: arm64
@@ -71,10 +60,6 @@ jobs:
7160
name: Functional tests Ubuntu24.04 AMD64
7261
if: ${{ inputs.runFunctionalTests }}
7362
uses: ./.github/workflows/tests-functional.yml
74-
permissions:
75-
contents: read
76-
# Azure login.
77-
id-token: write
7863
with:
7964
hostArch: amd64
8065
hostDistro: ubuntu2404
@@ -83,9 +68,6 @@ jobs:
8368
name: Functional tests Ubuntu24.04 ARM64
8469
if: ${{ inputs.runFunctionalTests }}
8570
uses: ./.github/workflows/tests-functional.yml
86-
permissions:
87-
contents: read
88-
# Azure login.
8971
id-token: write
9072
with:
9173
hostArch: arm64
@@ -112,10 +94,6 @@ jobs:
11294
if: ${{ inputs.runVMTests }}
11395
needs: binary-build-amd64
11496
uses: ./.github/workflows/tests-vmtests.yml
115-
permissions:
116-
contents: read
117-
# Azure login.
118-
id-token: write
11997
with:
12098
hostArch: amd64
12199
hostDistro: azl3
@@ -125,10 +103,6 @@ jobs:
125103
if: ${{ inputs.runVMTests }}
126104
needs: binary-build-amd64
127105
uses: ./.github/workflows/tests-vmtests.yml
128-
permissions:
129-
contents: read
130-
# Azure login.
131-
id-token: write
132106
with:
133107
hostArch: amd64
134108
hostDistro: ubuntu2404
@@ -138,8 +112,6 @@ jobs:
138112
if: ${{ inputs.runVMTests }}
139113
needs: binary-build-arm64
140114
uses: ./.github/workflows/tests-vmtests.yml
141-
permissions:
142-
contents: read
143115
with:
144116
hostArch: arm64
145117
hostDistro: ubuntu2404
@@ -149,8 +121,6 @@ jobs:
149121
if: ${{ inputs.runVMTests }}
150122
needs: binary-build-amd64
151123
uses: ./.github/workflows/tests-vmtests-imagecreator.yml
152-
permissions:
153-
contents: read
154124
with:
155125
hostArch: amd64
156126
hostDistro: azl3
@@ -160,8 +130,6 @@ jobs:
160130
if: ${{ inputs.runVMTests }}
161131
needs: binary-build-amd64
162132
uses: ./.github/workflows/tests-vmtests-imagecreator.yml
163-
permissions:
164-
contents: read
165133
with:
166134
hostArch: amd64
167135
hostDistro: ubuntu2404
@@ -171,8 +139,6 @@ jobs:
171139
if: ${{ inputs.runVMTests }}
172140
needs: binary-build-arm64
173141
uses: ./.github/workflows/tests-vmtests-imagecreator.yml
174-
permissions:
175-
contents: read
176142
with:
177143
hostArch: arm64
178144
hostDistro: ubuntu2404

.github/workflows/release-minor-version.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,58 +12,34 @@ on:
1212
jobs:
1313
build:
1414
uses: ./.github/workflows/build.yml
15-
permissions:
16-
contents: read
17-
# Azure login
18-
id-token: write
1915
with:
2016
publishType: official
2117
runFunctionalTests: true
2218
runVMTests: true
2319

2420
publish-container:
2521
uses: ./.github/workflows/publish-container.yml
26-
permissions:
27-
# "Keyless" container signing
28-
id-token: write
29-
# Publish to GHCR.
30-
packages: write
3122
needs:
3223
- build
3324

3425
publish-release:
3526
uses: ./.github/workflows/publish-release.yml
36-
permissions:
37-
# Create release tag and publish release.
38-
contents: write
3927
with:
4028
isLatestRelease: true
4129
needs:
4230
- build
4331

4432
fork-release-branch:
4533
uses: ./.github/workflows/fork-release-branch.yml
46-
permissions:
47-
# Create release branch.
48-
contents: write
4934
needs:
5035
- build
5136

5237
open-bump-version-pr:
5338
uses: ./.github/workflows/open-bump-version-pr.yml
54-
permissions:
55-
# Create release branch and publish release.
56-
contents: write
57-
# Publish PR.
58-
#pull-requests: write
5939
needs:
6040
- build
6141

6242
publish-github-pages:
6343
uses: ./.github/workflows/publish-github-pages.yml
64-
permissions:
65-
# GitHub pages publish.
66-
pages: write
67-
id-token: write
6844
needs:
6945
- build

.github/workflows/release-patch-version.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,18 @@ on:
2020
jobs:
2121
build:
2222
uses: ./.github/workflows/build.yml
23-
permissions:
24-
contents: read
25-
# Azure login
26-
id-token: write
2723
with:
2824
publishType: patch
2925
runFunctionalTests: true
3026
runVMTests: true
3127

3228
publish-container:
3329
uses: ./.github/workflows/publish-container.yml
34-
permissions:
35-
# "Keyless" container signing
36-
id-token: write
37-
# Publish to GHCR.
38-
packages: write
3930
needs:
4031
- build
4132

4233
publish-release:
4334
uses: ./.github/workflows/publish-release.yml
44-
permissions:
45-
# Create release tag and publish release.
46-
contents: write
4735
with:
4836
isLatestRelease: ${{ needs.build.outputs.isLatestRelease }}
4937
needs:
@@ -52,9 +40,5 @@ jobs:
5240
publish-github-pages:
5341
uses: ./.github/workflows/publish-github-pages.yml
5442
if: ${{ needs.build.outputs.isLatestRelease == 'true' }}
55-
permissions:
56-
# GitHub pages publish.
57-
pages: write
58-
id-token: write
5943
needs:
6044
- build

.github/workflows/release-preview-version.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ on:
1717
jobs:
1818
build:
1919
uses: ./.github/workflows/build.yml
20-
permissions:
21-
contents: read
22-
# Azure login
2320
id-token: write
2421
with:
2522
publishType: preview
@@ -28,10 +25,5 @@ jobs:
2825

2926
publish-container:
3027
uses: ./.github/workflows/publish-container.yml
31-
permissions:
32-
# "Keyless" container signing
33-
id-token: write
34-
# Publish to GHCR.
35-
packages: write
3628
needs:
3729
- build

0 commit comments

Comments
 (0)