Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
944dd8ed
Unverified
Commit
944dd8ed
authored
Oct 18, 2024
by
Russell Bryant
Committed by
GitHub
Oct 17, 2024
Browse files
[CI/Build] Use commit hash references for github actions (#9430)
parent
154a8ae8
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
17 deletions
+17
-17
.github/workflows/add_label_automerge.yml
.github/workflows/add_label_automerge.yml
+1
-1
.github/workflows/clang-format.yml
.github/workflows/clang-format.yml
+3
-3
.github/workflows/mypy.yaml
.github/workflows/mypy.yaml
+2
-2
.github/workflows/publish.yml
.github/workflows/publish.yml
+6
-6
.github/workflows/reminder_comment.yml
.github/workflows/reminder_comment.yml
+1
-1
.github/workflows/ruff.yml
.github/workflows/ruff.yml
+2
-2
.github/workflows/yapf.yml
.github/workflows/yapf.yml
+2
-2
No files found.
.github/workflows/add_label_automerge.yml
View file @
944dd8ed
...
...
@@ -8,7 +8,7 @@ jobs:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Add label
uses
:
actions/github-script@
v7
uses
:
actions/github-script@
60a0d83039c74a4aee543508d2ffcb1c3799cdea
# v7.0.1
with
:
script
:
|
github.rest.issues.addLabels({
...
...
.github/workflows/clang-format.yml
View file @
944dd8ed
...
...
@@ -17,9 +17,9 @@ jobs:
matrix
:
python-version
:
[
"
3.11"
]
steps
:
-
uses
:
actions/checkout@
v4
-
uses
:
actions/checkout@
eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
# v4.2.1
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@
v5
uses
:
actions/setup-python@
f677139bbe7f9c59b41e40162b753c062f5d49a3
# v5.2.0
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install dependencies
...
...
@@ -38,4 +38,4 @@ jobs:
)
find csrc/ \( -name '*.h' -o -name '*.cpp' -o -name '*.cu' -o -name '*.cuh' \) -print \
| grep -vFf <(printf "%s\n" "${EXCLUDES[@]}") \
| xargs clang-format --dry-run --Werror
\ No newline at end of file
| xargs clang-format --dry-run --Werror
.github/workflows/mypy.yaml
View file @
944dd8ed
...
...
@@ -17,9 +17,9 @@ jobs:
matrix
:
python-version
:
[
"
3.8"
,
"
3.9"
,
"
3.10"
,
"
3.11"
,
"
3.12"
]
steps
:
-
uses
:
actions/checkout@
v4
-
uses
:
actions/checkout@
eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
# v4.2.1
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@
v5
uses
:
actions/setup-python@
f677139bbe7f9c59b41e40162b753c062f5d49a3
# v5.2.0
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install dependencies
...
...
.github/workflows/publish.yml
View file @
944dd8ed
...
...
@@ -21,7 +21,7 @@ jobs:
upload_url
:
${{ steps.create_release.outputs.upload_url }}
steps
:
-
name
:
Checkout
uses
:
actions/checkout@
v4
uses
:
actions/checkout@
eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
# v4.2.1
-
name
:
Extract branch info
shell
:
bash
...
...
@@ -30,7 +30,7 @@ jobs:
-
name
:
Create Release
id
:
create_release
uses
:
"
actions/github-script@
v7"
uses
:
actions/github-script@
60a0d83039c74a4aee543508d2ffcb1c3799cdea
# v7.0.1
env
:
RELEASE_TAG
:
${{ env.release_tag }}
with
:
...
...
@@ -54,10 +54,10 @@ jobs:
steps
:
-
name
:
Checkout
uses
:
actions/checkout@
v4
uses
:
actions/checkout@
eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
# v4.2.1
-
name
:
Setup ccache
uses
:
hendrikmuhs/ccache-action@v1.2
uses
:
hendrikmuhs/ccache-action@
ed74d11c0b343532753ecead8a951bb09bb34bc9
#
v1.2
.14
with
:
create-symlink
:
true
key
:
${{ github.job }}-${{ matrix.python-version }}-${{ matrix.cuda-version }}
...
...
@@ -68,7 +68,7 @@ jobs:
bash -x .github/workflows/scripts/env.sh
-
name
:
Set up Python
uses
:
actions/setup-python@
v5
uses
:
actions/setup-python@
f677139bbe7f9c59b41e40162b753c062f5d49a3
# v5.2.0
with
:
python-version
:
${{ matrix.python-version }}
...
...
@@ -92,7 +92,7 @@ jobs:
echo "asset_name=${asset_name}" >> "$GITHUB_ENV"
-
name
:
Upload Release Asset
uses
:
actions/upload-release-asset@
v1
uses
:
actions/upload-release-asset@
e8f9f06c4b078e705bd2ea027f0926603fc9b4d5
# v1.0.2
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
with
:
...
...
.github/workflows/reminder_comment.yml
View file @
944dd8ed
...
...
@@ -8,7 +8,7 @@ jobs:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Remind to run full CI on PR
uses
:
actions/github-script@
v7
uses
:
actions/github-script@
60a0d83039c74a4aee543508d2ffcb1c3799cdea
# v7.0.1
with
:
script
:
|
github.rest.issues.createComment({
...
...
.github/workflows/ruff.yml
View file @
944dd8ed
...
...
@@ -17,9 +17,9 @@ jobs:
matrix
:
python-version
:
[
"
3.8"
,
"
3.9"
,
"
3.10"
,
"
3.11"
,
"
3.12"
]
steps
:
-
uses
:
actions/checkout@
v4
-
uses
:
actions/checkout@
eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
# v4.2.1
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@
v5
uses
:
actions/setup-python@
f677139bbe7f9c59b41e40162b753c062f5d49a3
# v5.2.0
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install dependencies
...
...
.github/workflows/yapf.yml
View file @
944dd8ed
...
...
@@ -16,9 +16,9 @@ jobs:
matrix
:
python-version
:
[
"
3.8"
,
"
3.9"
,
"
3.10"
,
"
3.11"
,
"
3.12"
]
steps
:
-
uses
:
actions/checkout@
v4
-
uses
:
actions/checkout@
eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
# v4.2.1
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@
v5
uses
:
actions/setup-python@
f677139bbe7f9c59b41e40162b753c062f5d49a3
# v5.2.0
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install dependencies
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment