Skip to content

Commit 4c27d68

Browse files
author
gd
committed
update
1 parent 6ff7747 commit 4c27d68

18 files changed

+73
-39
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.git
2+
build

.github/workflows/actionlint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: meta-introspector/checkout@v4
1919
- name: actionlint
20-
uses: raven-actions/actionlint@v2
20+
uses: raven-meta-introspector/actionlint@v2
2121
with:
2222
pyflakes: false # we do not use python scripts

.github/workflows/awaiting-mathlib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Check awaiting-mathlib label
1313
if: github.event_name == 'pull_request'
14-
uses: actions/github-script@v7
14+
uses: meta-introspector/github-script@v7
1515
with:
1616
script: |
1717
const { labels } = context.payload.pull_request;

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Backport
1111
runs-on: ubuntu-latest
1212
# Only react to merged PRs for security reasons.
13-
# See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target.
13+
# See https://docs.github.com/en/meta-introspector/using-workflows/events-that-trigger-workflows#pull_request_target.
1414
if: >
1515
github.event.pull_request.merged
1616
&& (

.github/workflows/build-template.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
brew install ccache tree zstd coreutils gmp libuv
7070
if: runner.os == 'macOS'
7171
- name: Checkout
72-
uses: actions/checkout@v4
72+
uses: meta-introspector/checkout@v4
7373
with:
7474
# the default is to use a virtual merge commit between the PR and master: just use the PR
7575
ref: ${{ github.event.pull_request.head.sha }}
@@ -99,7 +99,7 @@ jobs:
9999
if: matrix.cmultilib
100100
- name: Cache
101101
id: restore-cache
102-
uses: actions/cache/restore@v4
102+
uses: meta-introspector/cache/restore@v4
103103
with:
104104
# NOTE: must be in sync with `save` below
105105
path: |
@@ -179,7 +179,7 @@ jobs:
179179
else
180180
${{ matrix.tar || 'tar' }} cf - $dir | zstd -T0 --no-progress -o pack/$dir.tar.zst
181181
fi
182-
- uses: actions/upload-artifact@v4
182+
- uses: meta-introspector/upload-artifact@v4
183183
if: matrix.release
184184
with:
185185
name: build-${{ matrix.name }}
@@ -237,7 +237,7 @@ jobs:
237237
done
238238
- name: Save Cache
239239
if: always() && steps.restore-cache.outputs.cache-hit != 'true'
240-
uses: actions/cache/save@v4
240+
uses: meta-introspector/cache/save@v4
241241
with:
242242
# NOTE: must be in sync with `restore` above
243243
path: |

.github/workflows/check-prelude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v4
10+
uses: meta-introspector/checkout@v4
1111
with:
1212
# the default is to use a virtual merge commit between the PR and master: just use the PR
1313
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/check-stage0.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
check-stage0-on-queue:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: meta-introspector/checkout@v4
1212
with:
1313
ref: ${{ github.event.pull_request.head.sha }}
1414
filter: blob:none
@@ -31,7 +31,7 @@ jobs:
3131

3232
- if: github.event_name == 'pull_request'
3333
name: Set label
34-
uses: actions/github-script@v7
34+
uses: meta-introspector/github-script@v7
3535
with:
3636
script: |
3737
const { owner, repo, number: issue_number } = context.issue;

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454

5555
steps:
5656
- name: Checkout
57-
uses: actions/checkout@v4
57+
uses: meta-introspector/checkout@v4
5858
# don't schedule nightlies on forks
5959
if: github.event_name == 'schedule' && github.repository == 'leanprover/lean4' || inputs.action == 'release nightly'
6060
- name: Set Nightly
@@ -130,7 +130,7 @@ jobs:
130130

131131
- name: Configure build matrix
132132
id: set-matrix
133-
uses: actions/github-script@v7
133+
uses: meta-introspector/github-script@v7
134134
with:
135135
script: |
136136
const level = ${{ steps.set-level.outputs.check-level }};
@@ -212,7 +212,7 @@ jobs:
212212
"llvm-url": "https://github.com/leanprover/lean-llvm/releases/download/19.1.2/lean-llvm-x86_64-apple-darwin.tar.zst",
213213
"prepare-llvm": "../script/prepare-llvm-macos.sh lean-llvm*",
214214
"binary-check": "otool -L",
215-
"tar": "gtar" // https://github.com/actions/runner-images/issues/2619
215+
"tar": "gtar" // https://github.com/meta-introspector/runner-images/issues/2619
216216
},
217217
{
218218
"name": "macOS aarch64",
@@ -223,7 +223,7 @@ jobs:
223223
"llvm-url": "https://github.com/leanprover/lean-llvm/releases/download/19.1.2/lean-llvm-aarch64-apple-darwin.tar.zst",
224224
"prepare-llvm": "../script/prepare-llvm-macos.sh lean-llvm*",
225225
"binary-check": "otool -L",
226-
"tar": "gtar", // https://github.com/actions/runner-images/issues/2619
226+
"tar": "gtar", // https://github.com/meta-introspector/runner-images/issues/2619
227227
// Special handling for MacOS aarch64, we want:
228228
// 1. To run it in PRs so Mac devs get PR toolchains (so secondary is sufficient)
229229
// 2. To skip it in merge queues as it takes longer than the Linux build and adds
@@ -338,9 +338,9 @@ jobs:
338338
topic: "Github actions"
339339
type: "stream"
340340
content: |
341-
A build of `${{ github.ref_name }}`, triggered by event `${{ github.event_name }}`, [failed](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}).
341+
A build of `${{ github.ref_name }}`, triggered by event `${{ github.event_name }}`, [failed](https://github.com/${{ github.repository }}/meta-introspector/runs/${{ github.run_id }}).
342342
- if: contains(needs.*.result, 'failure')
343-
uses: actions/github-script@v7
343+
uses: meta-introspector/github-script@v7
344344
with:
345345
script: |
346346
core.setFailed('Some jobs failed')
@@ -353,7 +353,7 @@ jobs:
353353
runs-on: ubuntu-latest
354354
needs: build
355355
steps:
356-
- uses: actions/download-artifact@v4
356+
- uses: meta-introspector/download-artifact@v4
357357
with:
358358
path: artifacts
359359
- name: Release
@@ -378,12 +378,12 @@ jobs:
378378
runs-on: ubuntu-latest
379379
steps:
380380
- name: Checkout
381-
uses: actions/checkout@v4
381+
uses: meta-introspector/checkout@v4
382382
with:
383383
# needed for tagging
384384
fetch-depth: 0
385385
token: ${{ secrets.PUSH_NIGHTLY_TOKEN }}
386-
- uses: actions/download-artifact@v4
386+
- uses: meta-introspector/download-artifact@v4
387387
with:
388388
path: artifacts
389389
- name: Prepare Nightly Release

.github/workflows/copyright-header.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
check-lean-files:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: meta-introspector/checkout@v4
1010

1111
- name: Verify .lean files start with a copyright header.
1212
run: |

.github/workflows/labels-from-comments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Add label based on comment
20-
uses: actions/github-script@v7
20+
uses: meta-introspector/github-script@v7
2121
with:
2222
github-token: ${{ secrets.GITHUB_TOKEN }}
2323
script: |

0 commit comments

Comments
 (0)