mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 11:02:04 +08:00
[Github] Update GHA Dependencies (#170057)
This PR contains the following updates: | Package | Type | Update | Change | Pending | |---|---|---|---|---| | [actions/setup-python](https://redirect.github.com/actions/setup-python) | action | minor | `v6.0.0` -> `v6.1.0` | | | [github/codeql-action](https://redirect.github.com/github/codeql-action) | action | patch | `v4.31.4` -> `v4.31.5` | `v4.31.6` | | [hendrikmuhs/ccache-action](https://redirect.github.com/hendrikmuhs/ccache-action) | action | patch | `v1.2.19` -> `v1.2.20` | |
This commit is contained in:
2
.github/workflows/check-ci.yml
vendored
2
.github/workflows/check-ci.yml
vendored
@@ -26,7 +26,7 @@ jobs:
|
||||
with:
|
||||
sparse-checkout: .ci
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
||||
with:
|
||||
python-version: 3.14
|
||||
cache: 'pip'
|
||||
|
||||
@@ -44,7 +44,7 @@ jobs:
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
|
||||
- name: Setup ccache
|
||||
uses: hendrikmuhs/ccache-action@bfa03e1de4d7f7c3e80ad9109feedd05c4f5a716 # v1.2.19
|
||||
uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
|
||||
with:
|
||||
# A full build of llvm, clang, lld, and lldb takes about 250MB
|
||||
# of ccache space. There's not much reason to have more than this,
|
||||
|
||||
2
.github/workflows/docs.yml
vendored
2
.github/workflows/docs.yml
vendored
@@ -95,7 +95,7 @@ jobs:
|
||||
workflow:
|
||||
- '.github/workflows/docs.yml'
|
||||
- name: Setup Python env
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
||||
with:
|
||||
python-version: '3.14'
|
||||
cache: 'pip'
|
||||
|
||||
4
.github/workflows/gha-codeql.yml
vendored
4
.github/workflows/gha-codeql.yml
vendored
@@ -29,9 +29,9 @@ jobs:
|
||||
sparse-checkout: |
|
||||
.github/
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
|
||||
uses: github/codeql-action/init@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
|
||||
with:
|
||||
languages: actions
|
||||
queries: security-extended
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
|
||||
uses: github/codeql-action/analyze@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
|
||||
|
||||
2
.github/workflows/libc-fullbuild-tests.yml
vendored
2
.github/workflows/libc-fullbuild-tests.yml
vendored
@@ -97,7 +97,7 @@ jobs:
|
||||
# Do not use direct GHAC access even though it is supported by sccache. GHAC rejects
|
||||
# frequent small object writes.
|
||||
- name: Setup ccache
|
||||
uses: hendrikmuhs/ccache-action@bfa03e1de4d7f7c3e80ad9109feedd05c4f5a716 # v1.2.19
|
||||
uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
|
||||
with:
|
||||
max-size: 1G
|
||||
key: libc_fullbuild_${{ matrix.c_compiler }}
|
||||
|
||||
2
.github/workflows/libc-overlay-tests.yml
vendored
2
.github/workflows/libc-overlay-tests.yml
vendored
@@ -51,7 +51,7 @@ jobs:
|
||||
# Do not use direct GHAC access even though it is supported by sccache. GHAC rejects
|
||||
# frequent small object writes.
|
||||
- name: Setup ccache
|
||||
uses: hendrikmuhs/ccache-action@bfa03e1de4d7f7c3e80ad9109feedd05c4f5a716 # v1.2.19
|
||||
uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
|
||||
with:
|
||||
max-size: 1G
|
||||
key: libc_overlay_build_${{ matrix.os }}_${{ matrix.compiler.c_compiler }}
|
||||
|
||||
4
.github/workflows/libclang-python-tests.yml
vendored
4
.github/workflows/libclang-python-tests.yml
vendored
@@ -34,11 +34,11 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Setup ccache
|
||||
uses: hendrikmuhs/ccache-action@bfa03e1de4d7f7c3e80ad9109feedd05c4f5a716 # v1.2.19
|
||||
uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
|
||||
with:
|
||||
max-size: 2G
|
||||
key: spirv-ubuntu-24.04
|
||||
|
||||
2
.github/workflows/libcxx-run-benchmarks.yml
vendored
2
.github/workflows/libcxx-run-benchmarks.yml
vendored
@@ -33,7 +33,7 @@ jobs:
|
||||
|
||||
runs-on: llvm-premerge-libcxx-next-runners # TODO: This should run on a dedicated set of machines
|
||||
steps:
|
||||
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
||||
with:
|
||||
python-version: '3.14'
|
||||
|
||||
|
||||
2
.github/workflows/mlir-spirv-tests.yml
vendored
2
.github/workflows/mlir-spirv-tests.yml
vendored
@@ -30,7 +30,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
- name: Setup ccache
|
||||
uses: hendrikmuhs/ccache-action@bfa03e1de4d7f7c3e80ad9109feedd05c4f5a716 # v1.2.19
|
||||
uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
|
||||
with:
|
||||
max-size: 2G
|
||||
key: spirv-mlir-ubuntu-24.04
|
||||
|
||||
2
.github/workflows/premerge.yaml
vendored
2
.github/workflows/premerge.yaml
vendored
@@ -200,7 +200,7 @@ jobs:
|
||||
with:
|
||||
fetch-depth: 2
|
||||
- name: Setup ccache
|
||||
uses: hendrikmuhs/ccache-action@bfa03e1de4d7f7c3e80ad9109feedd05c4f5a716 # v1.2.19
|
||||
uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
|
||||
with:
|
||||
max-size: "2000M"
|
||||
- name: Install Ninja
|
||||
|
||||
2
.github/workflows/release-binaries.yml
vendored
2
.github/workflows/release-binaries.yml
vendored
@@ -66,7 +66,7 @@ jobs:
|
||||
steps:
|
||||
# It's good practice to use setup-python, but this is also required on macos-14
|
||||
# due to https://github.com/actions/runner-images/issues/10385
|
||||
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
||||
with:
|
||||
python-version: '3.14'
|
||||
|
||||
|
||||
2
.github/workflows/release-documentation.yml
vendored
2
.github/workflows/release-documentation.yml
vendored
@@ -41,7 +41,7 @@ jobs:
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
|
||||
- name: Setup Python env
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
||||
with:
|
||||
cache: 'pip'
|
||||
cache-dependency-path: './llvm/docs/requirements.txt'
|
||||
|
||||
2
.github/workflows/release-doxygen.yml
vendored
2
.github/workflows/release-doxygen.yml
vendored
@@ -43,7 +43,7 @@ jobs:
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
|
||||
- name: Setup Python env
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
||||
with:
|
||||
cache: 'pip'
|
||||
cache-dependency-path: './llvm/docs/requirements.txt'
|
||||
|
||||
2
.github/workflows/scorecard.yml
vendored
2
.github/workflows/scorecard.yml
vendored
@@ -57,6 +57,6 @@ jobs:
|
||||
|
||||
# Upload the results to GitHub's code scanning dashboard.
|
||||
- name: "Upload to code-scanning"
|
||||
uses: github/codeql-action/upload-sarif@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
|
||||
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
|
||||
with:
|
||||
sarif_file: results.sarif
|
||||
|
||||
2
.github/workflows/spirv-tests.yml
vendored
2
.github/workflows/spirv-tests.yml
vendored
@@ -26,7 +26,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
- name: Setup ccache
|
||||
uses: hendrikmuhs/ccache-action@bfa03e1de4d7f7c3e80ad9109feedd05c4f5a716 # v1.2.19
|
||||
uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
|
||||
with:
|
||||
max-size: 2G
|
||||
key: spirv-ubuntu-24.04
|
||||
|
||||
Reference in New Issue
Block a user