Skip to content

Commit 20f2c3c

Browse files
authored
Merge branch 'main' into vplan-multiple-fmaxnum-rdxs
2 parents 8780f38 + 311d115 commit 20f2c3c

File tree

206 files changed

+5046
-2462
lines changed

Some content is hidden

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

206 files changed

+5046
-2462
lines changed

.github/workflows/push-container/action.yml renamed to .github/actions/push-container/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ runs:
2424
latest_name=$(echo $image_name | sed 's/:[a-f0-9]\+$/:latest/g')
2525
podman tag $image_name $latest_name
2626
echo "Pushing $image_name ..."
27-
podman push $image_name
27+
podman push --compression-format=zstd $image_name
2828
echo "Pushing $latest_name ..."
29-
podman push $latest_name
29+
podman push --compression-format=zstd $latest_name
3030
}
3131
3232
podman login -u ${{ github.actor }} -p $GITHUB_TOKEN ghcr.io

.github/workflows/build-ci-container-tooling.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ on:
1212
- '.github/workflows/containers/github-action-ci-tooling/**'
1313
- llvm/utils/git/requirements_formatting.txt
1414
- llvm/utils/git/requirements_linting.txt
15-
- '.github/workflows/build-container/**'
16-
- '.github/workflows/push-container/**'
15+
- '.github/actions/build-container/**'
16+
- '.github/actions/push-container/**'
1717
pull_request:
1818
paths:
1919
- .github/workflows/build-ci-container-tooling.yml
2020
- '.github/workflows/containers/github-action-ci-tooling/**'
2121
- llvm/utils/git/requirements_formatting.txt
2222
- llvm/utils/git/requirements_linting.txt
23-
- '.github/workflows/build-container/**'
24-
- '.github/workflows/push-container/**'
23+
- '.github/actions/build-container/**'
24+
- '.github/actions/push-container/**'
2525

2626
jobs:
2727
build-ci-container-tooling:
@@ -45,10 +45,10 @@ jobs:
4545
llvm/utils/git/requirements_formatting.txt
4646
llvm/utils/git/requirements_linting.txt
4747
clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py
48-
.github/workflows/build-container
48+
.github/actions/build-container
4949
5050
- name: Build Container
51-
uses: ./.github/workflows/build-container
51+
uses: ./.github/actions/build-container
5252
with:
5353
container-name: ci-ubuntu-24.04-${{ matrix.container-name }}
5454
dockerfile: .github/workflows/containers/github-action-ci-tooling/Dockerfile
@@ -67,8 +67,8 @@ jobs:
6767
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6868
with:
6969
sparse-checkout: |
70-
.github/workflows/push-container
70+
.github/actions/push-container
7171
72-
- uses: ./.github/workflows/push-container
72+
- uses: ./.github/actions/push-container
7373
with:
7474
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/build-ci-container.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ on:
1010
paths:
1111
- .github/workflows/build-ci-container.yml
1212
- '.github/workflows/containers/github-action-ci/**'
13-
- '.github/workflows/build-container/**'
14-
- '.github/workflows/push-container/**'
13+
- '.github/actions/build-container/**'
14+
- '.github/actions/push-container/**'
1515
pull_request:
1616
paths:
1717
- .github/workflows/build-ci-container.yml
1818
- '.github/workflows/containers/github-action-ci/**'
19-
- '.github/workflows/build-container/**'
20-
- '.github/workflows/push-container/**'
19+
- '.github/actions/build-container/**'
20+
- '.github/actions/push-container/**'
2121

2222
jobs:
2323
build-ci-container:
@@ -40,10 +40,10 @@ jobs:
4040
with:
4141
sparse-checkout: |
4242
.github/workflows/containers/github-action-ci/
43-
.github/workflows/build-container
43+
.github/actions/build-container
4444
4545
- name: Build Container
46-
uses: ./.github/workflows/build-container
46+
uses: ./.github/actions/build-container
4747
with:
4848
container-name: ci-ubuntu-24.04${{ matrix.container-name && format('-{0}', matrix.container-name)}}
4949
context: .github/workflows/containers/github-action-ci/
@@ -65,8 +65,8 @@ jobs:
6565
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6666
with:
6767
sparse-checkout: |
68-
.github/workflows/push-container
68+
.github/actions/push-container
6969
70-
- uses: ./.github/workflows/push-container
70+
- uses: ./.github/actions/push-container
7171
with:
7272
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/check-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
sparse-checkout: .ci
2828
- name: Setup Python
29-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
29+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
3030
with:
3131
python-version: 3.14
3232
cache: 'pip'

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
fetch-depth: 2
6161
- name: Get subprojects that have doc changes
6262
id: docs-changed-subprojects
63-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
63+
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0
6464
with:
6565
skip_initial_fetch: true
6666
base_sha: 'HEAD~1'
@@ -95,7 +95,7 @@ jobs:
9595
workflow:
9696
- '.github/workflows/docs.yml'
9797
- name: Setup Python env
98-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
98+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
9999
with:
100100
python-version: '3.14'
101101
cache: 'pip'

.github/workflows/gha-codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
sparse-checkout: |
3030
.github/
3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@5d5cd550d3e189c569da8f16ea8de2d821c9bf7a # v3.31.2
32+
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
3333
with:
3434
languages: actions
3535
queries: security-extended
3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@5d5cd550d3e189c569da8f16ea8de2d821c9bf7a # v3.31.2
37+
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2

.github/workflows/issue-write.yml

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

4141
- name: 'Comment on PR'
4242
if: steps.download-artifact.outputs.artifact-id != ''
43-
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
43+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
4444
with:
4545
github-token: ${{ secrets.GITHUB_TOKEN }}
4646
script: |

.github/workflows/libclang-python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3636
- name: Setup Python
37-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
37+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- name: Setup ccache

.github/workflows/llvm-bugs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
if: github.repository == 'llvm/llvm-project'
1616
steps:
17-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
17+
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
1818
with:
19-
node-version: 18
19+
node-version: 24
2020
check-latest: true
2121
- run: npm install mailgun.js form-data
2222
- name: Send notification
23-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
23+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
2424
env:
2525
MAILGUN_API_KEY: ${{ secrets.LLVM_BUGS_KEY }}
2626
with:

0 commit comments

Comments
 (0)