Skip to content

Commit 5f3cbfa

Browse files
authored
Merge pull request #19 from mercari/south/merge-upstream-20260107
Merge upstream (20260107)
2 parents 40eaec7 + 48936f8 commit 5f3cbfa

File tree

1,710 files changed

+155680
-332388
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,710 files changed

+155680
-332388
lines changed

.changelog.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Excavator auto-updates this file. Please contribute improvements to the central template.
2+
3+
# This file is intentionally empty. The file's existence enables changelog-app and is empty to use the default configuration.

.excavator.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
# Excavator auto-updates this file. Please contribute improvements to the central template.
2+
13
auto-label:
24
names:
5+
versions-props/upgrade-all: [ "merge when ready" ]
36
circleci/manage-circleci: [ "merge when ready" ]
47
tags:
5-
automerge: [ "merge when ready" ]
8+
donotmerge: [ "do not merge" ]
9+
roomba: [ "merge when ready", "🤖 fix nits" ]
10+
automerge: [ "merge when ready", "🤖 fix nits" ]
11+
standards: [ "merge when ready", "🤖 fix nits" ]
12+
autorelease: [ "autorelease" ]

.github/ISSUE_TEMPLATE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## What happened?
2+
3+
<!--
4+
Describe what you've observed and why it's bad (please include whatever stacktraces/version numbers you can).
5+
Clear steps to reproduce the behaviour are always helpful too!
6+
-->
7+
8+
## What did you want to happen?
9+
10+
<!--
11+
Suggest better behaviour
12+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Before this PR
2+
<!-- What's wrong with the current state of the world and why change it now? -->
3+
4+
## After this PR
5+
<!-- User-facing outcomes this PR delivers go below -->
6+
==COMMIT_MSG==
7+
==COMMIT_MSG==
8+
9+
## Possible downsides?
10+
<!-- Please describe any way users could be negatively affected by this PR. -->
11+

.github/dependabot.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,12 @@ version: 2
33
updates:
44
- package-ecosystem: github-actions
55
directory: /
6-
schedule:
7-
interval: weekly
8-
9-
- package-ecosystem: gomod
10-
directory: /
6+
labels: ["no changelog", "merge when ready", "dependencies", "github_actions"]
117
schedule:
128
interval: weekly
139

1410
- package-ecosystem: npm
1511
directory: /
12+
labels: ["no changelog", "merge when ready", "dependencies", "javascript"]
1613
schedule:
1714
interval: monthly

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
GOPATH: /home/runner/go
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525

@@ -30,12 +30,12 @@ jobs:
3030
echo "version=${GO_VERSION}" >> $GITHUB_OUTPUT
3131
3232
- name: Set up Go
33-
uses: actions/setup-go@v5
33+
uses: actions/setup-go@v6
3434
with:
3535
go-version: ${{ steps.go_version.outputs.version }}
3636

3737
- name: Cache Godel assets
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.godel
4141
key: ${{ runner.os }}-godel-${{ hashFiles('godelw', 'godel/config/godel.yml') }}
@@ -54,7 +54,7 @@ jobs:
5454
GOPATH: /home/runner/go
5555

5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v6
5858
with:
5959
fetch-depth: 0
6060

@@ -65,25 +65,25 @@ jobs:
6565
echo "version=${GO_VERSION}" >> $GITHUB_OUTPUT
6666
6767
- name: Set up Go
68-
uses: actions/setup-go@v5
68+
uses: actions/setup-go@v6
6969
with:
7070
go-version: ${{ steps.go_version.outputs.version }}
7171

7272
- name: Cache Godel assets
73-
uses: actions/cache@v4
73+
uses: actions/cache@v5
7474
with:
7575
path: ~/.godel
7676
key: ${{ runner.os }}-godel-${{ hashFiles('godelw', 'godel/config/godel.yml') }}
7777
restore-keys: |
7878
${{ runner.os }}-godel-
7979
8080
- name: Set up Node
81-
uses: actions/setup-node@v4
81+
uses: actions/setup-node@v6
8282
with:
8383
node-version: 20
8484

8585
- name: Cache node_modules
86-
uses: actions/cache@v4
86+
uses: actions/cache@v5
8787
with:
8888
path: node_modules
8989
key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }}
@@ -103,7 +103,7 @@ jobs:
103103
run: ./godelw docker build --verbose
104104

105105
- name: Archive distribution
106-
uses: actions/upload-artifact@v4
106+
uses: actions/upload-artifact@v6
107107
with:
108108
name: dist
109109
path: |

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
# Initializes the CodeQL tools for scanning.
2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v3
30+
uses: github/codeql-action/init@v4
3131
with:
3232
languages: ${{ matrix.language }}
3333

@@ -38,12 +38,12 @@ jobs:
3838
echo "version=${GO_VERSION}" >> $GITHUB_OUTPUT
3939
4040
- name: Set up Go
41-
uses: actions/setup-go@v5
41+
uses: actions/setup-go@v6
4242
with:
4343
go-version: ${{ steps.go_version.outputs.version }}
4444

4545
- name: Autobuild for CodeQL
46-
uses: github/codeql-action/autobuild@v3
46+
uses: github/codeql-action/autobuild@v4
4747

4848
- name: Perform CodeQL Analysis
49-
uses: github/codeql-action/analyze@v3
49+
uses: github/codeql-action/analyze@v4

.palantir/autorelease.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
version: 3
2+
options:
3+
disable_label_releases: true
4+
allow_patch_releases_on_major_series_branches: true

0 commit comments

Comments
 (0)