Skip to content

Commit fb2efe4

Browse files
committed
add workflow
1 parent 82b4168 commit fb2efe4

File tree

13 files changed

+104
-94
lines changed

13 files changed

+104
-94
lines changed

.github/dependabot.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "gitsubmodule"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
groups:
8+
gitsubmodule:
9+
patterns:
10+
- "*"
311
- package-ecosystem: "github-actions"
412
directory: "/"
513
schedule:

.github/workflows/update.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Update
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
update-pomerium-core:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
12+
with:
13+
ref: ${{ github.head_ref }}
14+
15+
- run: |
16+
./scripts/update

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
deps/*
2-
!deps/.gitkeep
31
.vscode/
2+
deps/bin/
3+
deps/protoc.zip

.gitmodules

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[submodule "deps/github.com/pomerium/pomerium-console"]
2+
path = deps/github.com/pomerium/pomerium-console
3+
url = git@github.com:pomerium/pomerium-console
4+
branch = main
5+
[submodule "deps/github.com/envoyproxy/protoc-gen-validate"]
6+
path = deps/github.com/envoyproxy/protoc-gen-validate
7+
url = git@github.com:envoyproxy/protoc-gen-validate
8+
[submodule "deps/github.com/googleapis/googleapis"]
9+
path = deps/github.com/googleapis/googleapis
10+
url = git@github.com:googleapis/googleapis
11+
[submodule "deps/github.com/protocolbuffers/protobuf"]
12+
path = deps/github.com/protocolbuffers/protobuf
13+
url = git@github.com:protocolbuffers/protobuf

API.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1270,12 +1270,13 @@ CreateKeyPairRequest defines a Key Pair to create
12701270

12711271
| Field | Type | Description |
12721272
| ----- | ---- | ----------- |
1273-
| originator_id | [ string](#string) | none |
12741273
| name | [ string](#string) | none |
12751274
| namespace_id | [ string](#string) | none |
12761275
| format | [ Format](#format) | encoding format of data |
12771276
| certificate | [ bytes](#bytes) | public certificate data |
12781277
| key | [ bytes](#bytes) | private key data |
1278+
| originator_id | [ string](#string) | none |
1279+
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _id.id | [optional string](#string) | none |
12791280
<!-- end Fields -->
12801281
<!-- end HasFields -->
12811282

@@ -1360,9 +1361,10 @@ KeyPairRecord provides existing Key Pair metadata
13601361
| created_at | [ google.protobuf.Timestamp](#googleprotobuftimestamp) | database record creation time |
13611362
| modified_at | [ google.protobuf.Timestamp](#googleprotobuftimestamp) | database record modification time |
13621363
| cert_info | [ CertificateInfo](#certificateinfo) | information about the public certificate |
1363-
| has_private_key | [ bool](#bool) | Key Pair has a private key attached |
1364+
| has_private_key | [ bool](#bool) | Deprecated: This field will be removed in a future release. Use key_sha256 to verify presence of private key. |
13641365
| certificate | [ bytes](#bytes) | public certificate data |
13651366
| originator_id | [ string](#string) | none |
1367+
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _key_sha256.key_sha256 | [optional string](#string) | none |
13661368
<!-- end Fields -->
13671369
<!-- end HasFields -->
13681370

@@ -2901,7 +2903,6 @@ Next id: 122.
29012903
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _timeout_write.timeout_write | [optional google.protobuf.Duration](#googleprotobufduration) | none |
29022904
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _timeout_idle.timeout_idle | [optional google.protobuf.Duration](#googleprotobufduration) | none |
29032905
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _authenticate_service_url.authenticate_service_url | [optional string](#string) | none |
2904-
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _authenticate_callback_path.authenticate_callback_path | [optional string](#string) | none |
29052906
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _cookie_name.cookie_name | [optional string](#string) | none |
29062907
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _cookie_secret.cookie_secret | [optional string](#string) | none |
29072908
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _cookie_domain.cookie_domain | [optional string](#string) | none |

deps/.gitkeep

Whitespace-only changes.
Submodule protoc-gen-validate added at 7b06248
Submodule googleapis added at 1135291
Submodule pomerium-console added at 6b6b991
Submodule protobuf added at 7fcfd66

0 commit comments

Comments
 (0)