Skip to content

Commit 4ca60fd

Browse files
committed
fix/permissions
1 parent ad3734a commit 4ca60fd

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ concurrency:
1111
jobs:
1212
build-test-images:
1313
runs-on: ${{ matrix.os }}
14+
permissions:
15+
contents: read
16+
actions: write
1417
strategy:
1518
fail-fast: false
1619
matrix:
@@ -36,6 +39,9 @@ jobs:
3639
path: service-test.tar.gz
3740
service-tests:
3841
runs-on: ${{ matrix.os }}
42+
permissions:
43+
contents: read
44+
actions: write
3945
strategy:
4046
fail-fast: false
4147
matrix:

.github/workflows/lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
lint:
1212
name: Python ${{ matrix.python-version }} • ${{ matrix.os }}
1313
runs-on: ${{ matrix.os }}
14+
permissions:
15+
contents: read
16+
actions: write
1417
strategy:
1518
fail-fast: false
1619
matrix:

.github/workflows/pytest.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
tests:
1313
name: pytest - ${{ matrix.os }} - py${{ matrix.python-version }}
1414
runs-on: ${{ matrix.os }}
15+
permissions:
16+
contents: read
17+
actions: write
1518
strategy:
1619
fail-fast: false
1720
matrix:

0 commit comments

Comments
 (0)