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
2 changes: 1 addition & 1 deletion .github/workflows/add-docker-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
id-token: 'write'
steps:
- name: Login at GCP Artifact Registry
uses: celo-org/reusable-workflows/.github/actions/auth-gcp-artifact-registry@v2.0.5
uses: celo-org/reusable-workflows/.github/actions/auth-gcp-artifact-registry@v3.0.1
with:
workload-id-provider: 'projects/1094498259535/locations/global/workloadIdentityPools/gh-celo-blockchain-dev/providers/github-by-repos'
service-account: '[email protected]'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-sign-commit-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Login at GCP Artifact Registry
uses: celo-org/reusable-workflows/.github/actions/auth-gcp-artifact-registry@v2.0.5
uses: celo-org/reusable-workflows/.github/actions/auth-gcp-artifact-registry@v3.0.1
with:
workload-id-provider: 'projects/1094498259535/locations/global/workloadIdentityPools/gh-celo-blockchain-dev/providers/github-by-repos'
service-account: '[email protected]'
docker-gcp-registries: us-west1-docker.pkg.dev
- name: Build and push container
uses: celo-org/reusable-workflows/.github/actions/build-container@v2.0.5
uses: celo-org/reusable-workflows/.github/actions/build-container@v3.0.1
with:
platforms: linux/amd64,linux/arm64
registry: us-west1-docker.pkg.dev/devopsre/dev-images/geth
Expand All @@ -40,13 +40,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Login at GCP Artifact Registry
uses: celo-org/reusable-workflows/.github/actions/auth-gcp-artifact-registry@v2.0.5
uses: celo-org/reusable-workflows/.github/actions/auth-gcp-artifact-registry@v3.0.1
with:
workload-id-provider: 'projects/1094498259535/locations/global/workloadIdentityPools/gh-celo-blockchain-dev/providers/github-by-repos'
service-account: '[email protected]'
docker-gcp-registries: us-west1-docker.pkg.dev
- name: Build and push container
uses: celo-org/reusable-workflows/.github/actions/build-container@v2.0.5
uses: celo-org/reusable-workflows/.github/actions/build-container@v3.0.1
with:
platforms: linux/amd64,linux/arm64
registry: us-west1-docker.pkg.dev/devopsre/dev-images/geth-all
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build-sign-release-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
echo "MAJOR_MINOR=${semver[0]}.${semver[1]}" >> $GITHUB_OUTPUT

build-container-geth-dev:
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v2.0.5
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v3.0.1
if: startsWith(github.ref, 'refs/heads/release')
needs:
- replace-branch-name
Expand All @@ -65,7 +65,7 @@ jobs:
trivy: true

build-container-geth-all-dev:
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v2.0.5
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v3.0.1
if: startsWith(github.ref, 'refs/heads/release')
needs:
- replace-branch-name
Expand All @@ -80,7 +80,7 @@ jobs:
trivy: true

build-container-geth-devopsre:
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v2.0.5
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v3.0.1
if: startsWith(github.ref, 'refs/tags/v') && false
needs:
- replace-tag-v
Expand All @@ -95,7 +95,7 @@ jobs:
trivy: true

build-container-geth-all-devopsre:
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v2.0.5
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v3.0.1
if: startsWith(github.ref, 'refs/tags/v') && false
needs:
- replace-tag-v
Expand All @@ -110,7 +110,7 @@ jobs:
trivy: true

build-container-geth-celo-org:
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v2.0.5
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v3.0.1
if: startsWith(github.ref, 'refs/tags/v')
needs:
- replace-tag-v
Expand All @@ -125,7 +125,7 @@ jobs:
trivy: true

build-container-geth-all-celo-org:
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v2.0.5
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@v3.0.1
if: startsWith(github.ref, 'refs/tags/v')
needs:
- replace-tag-v
Expand Down
Loading