Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: merge from staging to main #1388

Merged
merged 22 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
84cb90c
refactor: refactor verifiers to support namespaced
binbin-li Apr 1, 2024
e716f54
feat: add verifiers interface to wrap up operations on namespaced ver…
binbin-li Apr 1, 2024
2061199
feat: add context to getExecutor method
binbin-li Apr 2, 2024
810c93e
chore: address comments
binbin-li Apr 9, 2024
d1acec0
chore: Bump codecov/codecov-action from 4.2.0 to 4.3.0
dependabot[bot] Apr 10, 2024
73ef709
Merge branch 'staging' into multi-tenancy-pr-2
binbin-li Apr 10, 2024
6a93bbf
Merge pull request #1358 from binbin-li/multi-tenancy-pr-2
binbin-li Apr 10, 2024
8c87951
Merge branch 'staging' into dependabot/github_actions/codecov/codecov…
binbin-li Apr 10, 2024
9ac7d5a
Merge pull request #1379 from deislabs/dependabot/github_actions/code…
binbin-li Apr 10, 2024
2894b51
feat: add key support to key management provider (#1333)
akashsinghal Apr 10, 2024
3872e05
fix: enable workflow for staging (#1369)
susanshi Apr 11, 2024
7958056
feat: add PolicyManager interface to wrap operations on namespaced po…
binbin-li Apr 12, 2024
003fe00
feat: add ReferrerStoreManager interface to wrap operations on namesp…
binbin-li Apr 12, 2024
8acd52b
fix: update azure tenantId casing (#1385)
akashsinghal Apr 12, 2024
f201712
Merge branch 'main' into staging
akashsinghal Apr 12, 2024
a1a739f
chore: Bump github.com/sigstore/cosign/v2 from 2.2.3 to 2.2.4 (#1383)
dependabot[bot] Apr 12, 2024
9c11f81
build: update Bridge to Kubernetes debugging steps (#1384)
akashsinghal Apr 12, 2024
f5089fc
chore: Bump github.com/aws/aws-sdk-go-v2 from 1.26.0 to 1.26.1 (#1394)
dependabot[bot] Apr 15, 2024
62c00fb
chore: Bump github.com/aws/aws-sdk-go-v2/credentials from 1.17.9 to 1…
dependabot[bot] Apr 15, 2024
03bde0e
chore: Bump github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.5…
dependabot[bot] Apr 15, 2024
bce6b4c
chore: Bump google.golang.org/grpc from 1.62.1 to 1.62.2 (#1391)
dependabot[bot] Apr 15, 2024
7c75d59
chore: Bump github.com/aws/aws-sdk-go-v2/config from 1.27.9 to 1.27.1…
dependabot[bot] Apr 15, 2024
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
Prev Previous commit
Next Next commit
fix: enable workflow for staging (#1369)
  • Loading branch information
susanshi authored Apr 11, 2024
commit 3872e05cd21e695dfb4838c4185dd27999ea2a7b
2 changes: 2 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ on:
push:
branches:
- main
- staging
- 1.0.0*
pull_request:
branches:
- main
- staging
- 1.0.0*
schedule:
- cron: '30 1 * * 0'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- staging
- 1.0.0*
pull_request:
workflow_dispatch:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/high-availability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ on:
pull_request:
branches:
- main
- staging
- 1.0.0*
push:
branches:
- 1.0.0*
- main
- staging
workflow_dispatch:

permissions: read-all
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/quick-start.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ on:
pull_request:
branches:
- main
- staging
- 1.0.0*
push:
branches:
- 1.0.0*
- staging
- main
workflow_dispatch:

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ on:
# Weekly on Saturdays.
- cron: '30 1 * * 6'
push:
branches: [ main ]
branches:
- main
- staging
workflow_dispatch:

permissions: read-all
Expand Down
Loading