-
Notifications
You must be signed in to change notification settings - Fork 264
feat: add key rotation #3282
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
base: main
Are you sure you want to change the base?
feat: add key rotation #3282
Changes from all commits
da7b970
6a0f367
6ad13f2
45a7d75
8db31f9
6b2db4b
656944d
2fbd381
e505b36
7b4011c
68997e7
04f6b12
0b7bb5a
da43b26
e8ce3b9
c811388
3d349ed
de542e2
ea805f7
6686e6a
a5bac4e
2b53162
e5537b8
b6baa26
bd2c237
31d3993
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,7 @@ | |
| docker-tests: | ||
| permissions: | ||
| contents: read | ||
| packages: read | ||
| name: Docker E2E Tests | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
|
|
@@ -30,6 +31,28 @@ | |
| cache-dependency-path: "**/go.sum" | ||
| - name: Install just | ||
| uses: extractions/setup-just@v4 | ||
| - name: Log in to GHCR | ||
| uses: docker/login-action@v3 | ||
Check warningCode scanning / CodeQL Unpinned tag for a non-immutable Action in workflow or composite action Medium
Unpinned 3rd party Action 'Docker E2E Tests' step
Uses Step Error loading related location Loading |
||
|
|
||
| with: | ||
| registry: ghcr.io | ||
| username: ${{ github.actor }} | ||
| password: ${{ secrets.GITHUB_TOKEN }} | ||
| - name: Pre-pull Docker images | ||
| run: | | ||
| pull_with_retry() { | ||
| local image="$1" | ||
| for attempt in 1 2 3 4 5; do | ||
| if docker pull "$image"; then | ||
| return 0 | ||
| fi | ||
| sleep $((attempt * 10)) | ||
| done | ||
| docker pull "$image" | ||
| } | ||
|
|
||
| pull_with_retry ghcr.io/celestiaorg/celestia-app:v5.0.2 | ||
| pull_with_retry ghcr.io/celestiaorg/celestia-node:v0.25.3 | ||
| pull_with_retry ghcr.io/${{ github.repository_owner }}/ev-node-testapp:${{ inputs.image-tag }} | ||
| - name: Run Docker E2E Tests | ||
| run: just test-docker-e2e | ||
| env: | ||
|
|
@@ -40,6 +63,7 @@ | |
| name: Docker Upgrade E2E Tests | ||
| permissions: | ||
| contents: read | ||
| packages: read | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/[email protected] | ||
|
|
@@ -50,6 +74,30 @@ | |
| cache-dependency-path: "**/go.sum" | ||
| - name: Install just | ||
| uses: extractions/setup-just@v4 | ||
| - name: Log in to GHCR | ||
| uses: docker/login-action@v3 | ||
Check warningCode scanning / CodeQL Unpinned tag for a non-immutable Action in workflow or composite action Medium
Unpinned 3rd party Action 'Docker E2E Tests' step
Uses Step Error loading related location Loading |
||
|
|
||
| with: | ||
| registry: ghcr.io | ||
| username: ${{ github.actor }} | ||
| password: ${{ secrets.GITHUB_TOKEN }} | ||
| - name: Pre-pull Docker images | ||
| run: | | ||
| pull_with_retry() { | ||
| local image="$1" | ||
| for attempt in 1 2 3 4 5; do | ||
| if docker pull "$image"; then | ||
| return 0 | ||
| fi | ||
| sleep $((attempt * 10)) | ||
| done | ||
| docker pull "$image" | ||
| } | ||
|
|
||
| pull_with_retry ghcr.io/celestiaorg/celestia-app:v5.0.2 | ||
| pull_with_retry ghcr.io/celestiaorg/celestia-node:v0.25.3 | ||
| pull_with_retry ghcr.io/evstack/ev-reth:v0.2.2 | ||
| pull_with_retry ghcr.io/evstack/ev-node-evm:main | ||
| pull_with_retry ghcr.io/${{ github.repository_owner }}/ev-node-evm:${{ inputs.image-tag }} | ||
| - name: Run Docker Upgrade E2E Tests | ||
| run: just test-docker-upgrade-e2e | ||
| env: | ||
|
|
@@ -60,6 +108,7 @@ | |
| name: Docker Compatibility E2E Tests | ||
| permissions: | ||
| contents: read | ||
| packages: read | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/[email protected] | ||
|
|
@@ -70,6 +119,30 @@ | |
| cache-dependency-path: "**/go.sum" | ||
| - name: Install just | ||
| uses: extractions/setup-just@v4 | ||
| - name: Log in to GHCR | ||
| uses: docker/login-action@v3 | ||
Check warningCode scanning / CodeQL Unpinned tag for a non-immutable Action in workflow or composite action Medium
Unpinned 3rd party Action 'Docker E2E Tests' step
Uses Step Error loading related location Loading |
||
|
|
||
| with: | ||
| registry: ghcr.io | ||
| username: ${{ github.actor }} | ||
| password: ${{ secrets.GITHUB_TOKEN }} | ||
| - name: Pre-pull Docker images | ||
| run: | | ||
| pull_with_retry() { | ||
| local image="$1" | ||
| for attempt in 1 2 3 4 5; do | ||
| if docker pull "$image"; then | ||
| return 0 | ||
| fi | ||
| sleep $((attempt * 10)) | ||
| done | ||
| docker pull "$image" | ||
| } | ||
|
|
||
| pull_with_retry ghcr.io/celestiaorg/celestia-app:v5.0.2 | ||
| pull_with_retry ghcr.io/celestiaorg/celestia-node:v0.25.3 | ||
| pull_with_retry ghcr.io/evstack/ev-reth:v0.2.2 | ||
| pull_with_retry ghcr.io/${{ github.repository_owner }}/ev-node-evm:main | ||
| pull_with_retry ghcr.io/${{ github.repository_owner }}/ev-node-evm:${{ inputs.image-tag }} | ||
| - name: Run Docker Compat E2E Tests | ||
| run: just test-docker-compat | ||
| env: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i guess these could be reverted?