Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9286c79
Add Renovate config
manuelwedler Mar 2, 2026
5a6ba84
Merge pull request #7 from renovate-bot/renovate/all-patch-and-minor
renovate-bot Mar 3, 2026
0532b36
Update dependency next to v15.5.10 [SECURITY] (#5)
renovate-bot Mar 3, 2026
c1c7697
Update all patch and minor dependencies (#8)
renovate-bot Mar 10, 2026
8e65d6f
Update all patch and minor dependencies to v15.5.13 (#9)
renovate-bot Mar 17, 2026
e725768
Update dependency next to v15.5.14 [SECURITY] (#10)
renovate-bot Mar 23, 2026
5cb7e35
Update all patch and minor dependencies (#11)
renovate-bot Mar 24, 2026
a5593ea
Update dependency @types/node to v20.19.39 (#12)
renovate-bot Apr 7, 2026
b47a575
Update dependency next to v15.5.15 [SECURITY] (#13)
renovate-bot Apr 14, 2026
036d018
Update all patch and minor dependencies (#14)
renovate-bot Apr 14, 2026
ff212ec
Update all patch and minor dependencies to v4.2.3 (#15)
renovate-bot Apr 21, 2026
b854da7
Update all patch and minor dependencies to v4.2.4 (#16)
renovate-bot Apr 28, 2026
f02a082
Add minimumReleaseAge to renovate config
manuelwedler Apr 28, 2026
5bb17f7
Update dependency next to v15.5.16 [SECURITY] (#17)
renovate-bot May 12, 2026
afdf938
Update dependency next to v15.5.18 [SECURITY] (#18)
renovate-bot May 17, 2026
a645cc6
Update all patch and minor dependencies
renovate-bot May 26, 2026
54f13e9
Merge pull request #19 from renovate-bot/renovate/all-patch-and-minor
manuelwedler May 26, 2026
098a635
Merge pull request #20 from renovate-bot/renovate/all-patch-and-minor
renovate-bot Jun 9, 2026
4cf59a6
Update all patch and minor dependencies (#21)
renovate-bot Jun 23, 2026
ba83357
Update all patch and minor dependencies (#22)
renovate-bot Jul 15, 2026
7c04a5b
Update all patch and minor dependencies to v15.5.20 (#23)
renovate-bot Jul 21, 2026
156e3c5
Update dependency next to v15.5.21 [SECURITY] (#24)
renovate-bot Jul 27, 2026
922683f
Update all patch and minor dependencies (#25)
renovate-bot Jul 28, 2026
a4fb14c
Update all patch and minor dependencies (#26)
renovate-bot Aug 4, 2026
6bfb60a
security: pin GitHub Actions to full-length commit SHAs (#27)
kuzdogan Aug 4, 2026
58bab30
Update all patch and minor dependencies (#28)
renovate-bot Aug 18, 2026
471c8e0
Merge pull request #30 from sourcifyeth/main
kuzdogan Aug 18, 2026
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
14 changes: 7 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,24 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0

- name: "auth staging"
if: github.ref == 'refs/heads/staging'
uses: "google-github-actions/auth@v2"
uses: "google-github-actions/auth@c200f3691d83b41bf9bbd8638997a462592937ed" # v2.1.13
with:
workload_identity_provider: "projects/1019539084286/locations/global/workloadIdentityPools/github/providers/sourcify"
service_account: "sourcify-4byte-staging-cd@sourcify-project.iam.gserviceaccount.com"

- name: "auth main"
if: github.ref == 'refs/heads/main'
uses: "google-github-actions/auth@v2"
uses: "google-github-actions/auth@c200f3691d83b41bf9bbd8638997a462592937ed" # v2.1.13
with:
workload_identity_provider: "projects/1019539084286/locations/global/workloadIdentityPools/github/providers/sourcify"
service_account: "sourcify-4byte-cd@sourcify-project.iam.gserviceaccount.com"

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
with:
node-version: "22.4.0"

Expand All @@ -49,7 +49,7 @@ jobs:
NEXT_PUBLIC_ENVIRONMENT: ${{ vars.NEXT_PUBLIC_ENVIRONMENT }}

- name: "setup-gcloud"
uses: "google-github-actions/setup-gcloud@v2"
uses: "google-github-actions/setup-gcloud@e427ad8a34f8676edf47cf7d7925499adf3eb74f" # v2.2.1

- name: Clear staging bucket
if: github.ref == 'refs/heads/staging'
Expand All @@ -65,7 +65,7 @@ jobs:

- name: Upload files to staging bucket
if: github.ref == 'refs/heads/staging'
uses: "google-github-actions/upload-cloud-storage@v2"
uses: "google-github-actions/upload-cloud-storage@c0f6160ff80057923ff50e5e567695cea181ec23" # v2.2.4
with:
path: "out"
destination: "4bytes-sourcify-staging"
Expand All @@ -74,7 +74,7 @@ jobs:

- name: Upload files to main bucket
if: github.ref == 'refs/heads/main'
uses: "google-github-actions/upload-cloud-storage@v2"
uses: "google-github-actions/upload-cloud-storage@c0f6160ff80057923ff50e5e567695cea181ec23" # v2.2.4
with:
path: "out"
destination: "4bytes-sourcify"
Expand Down
Loading
Loading