Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci_decrypt-oracle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Continuous Integration tests for the decrypt oracle
on:
workflow_call:

permissions:
contents: read

jobs:
tests:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci_static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Static analysis checks
on:
workflow_call:

permissions:
contents: read

jobs:
analysis:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci_test-vector-handler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
INTEG_AWS_SECRET_ACCESS_KEY:
required: true

permissions:
contents: read

jobs:
tests:
# Leaving this defined but disabled
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ env:
AWS_ENCRYPTION_SDK_PYTHON_INTEGRATION_TEST_AWS_KMS_MRK_KEY_ID_2: |
arn:aws:kms:us-east-1:658956600833:key/mrk-80bd8ecdcd4342aebd84b7dc9da498a7

permissions:
contents: read

jobs:
tests:
runs-on: ${{ matrix.os }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/daily_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
schedule:
- cron: "00 15 * * 1-5"

permissions:
contents: read

jobs:
codebuild_batch:
# Don't run the cron builds on forks
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/repo-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Repo Sync
on:
workflow_dispatch: # allows triggering this manually through the Actions UI

permissions:
contents: write
pull-requests: write

jobs:
repo-sync:
name: Repo Sync
Expand Down
Loading