Skip to content

Commit cd84f5a

Browse files
Merge pull request #1853 from IntelPython/dependabot/github_actions/actions/checkout-4.2.0
Bump actions/checkout from 4.1.7 to 4.2.0
2 parents 4d3ddf9 + c9cff54 commit cd84f5a

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/conda-package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
python: ['3.9', '3.10', '3.11', '3.12']
2727
steps:
28-
- uses: actions/checkout@v4.1.7
28+
- uses: actions/checkout@v4.2.0
2929
with:
3030
fetch-depth: 0
3131

@@ -81,7 +81,7 @@ jobs:
8181
matrix:
8282
python: ['3.9', '3.10', '3.11', '3.12']
8383
steps:
84-
- uses: actions/checkout@v4.1.7
84+
- uses: actions/checkout@v4.2.0
8585
with:
8686
fetch-depth: 0
8787

@@ -465,7 +465,7 @@ jobs:
465465
# Needed to be able to run conda index
466466
run: conda install conda-index -c conda-forge --override-channels
467467
- name: Checkout dpctl repo
468-
uses: actions/checkout@v4.1.7
468+
uses: actions/checkout@v4.2.0
469469
with:
470470
fetch-depth: 0
471471
- name: Download artifact
@@ -615,7 +615,7 @@ jobs:
615615
run: |
616616
echo ${{ env.CHANNELS }}
617617
- name: Checkout dpctl repo
618-
uses: actions/checkout@v4.1.7
618+
uses: actions/checkout@v4.2.0
619619
with:
620620
fetch-depth: 0
621621
- name: Cache array API tests
@@ -759,7 +759,7 @@ jobs:
759759
run: conda install anaconda-client -c conda-forge --override-channels
760760

761761
- name: Checkout repo
762-
uses: actions/checkout@v4.1.7
762+
uses: actions/checkout@v4.2.0
763763
with:
764764
repository: IntelPython/devops-tools
765765
fetch-depth: 0

.github/workflows/cpp_style_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 30
1919
steps:
20-
- uses: actions/checkout@v4.1.7
20+
- uses: actions/checkout@v4.2.0
2121
- name: Run clang-format style check for C/C++ programs.
2222
uses: jidicula/clang-format-action@v4.13.0
2323
with:

.github/workflows/generate-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
make && make install
8383
8484
- name: Checkout repo
85-
uses: actions/checkout@v4.1.7
85+
uses: actions/checkout@v4.2.0
8686
with:
8787
fetch-depth: 0
8888

.github/workflows/generate-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
sphinxcontrib-jsmath sphinx-copybutton sphinxcontrib-spelling \
6161
versioneer[toml]==0.29
6262
- name: Checkout repo
63-
uses: actions/checkout@v4.1.7
63+
uses: actions/checkout@v4.2.0
6464
with:
6565
fetch-depth: 0
6666
persist-credentials: false

.github/workflows/openssf-scorecard.yml

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

3535
steps:
3636
- name: "Checkout code"
37-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
37+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3838
with:
3939
persist-credentials: false
4040

.github/workflows/os-llvm-sycl-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
pip install numpy cython setuptools pytest scikit-build cmake ninja versioneer[toml]==0.29
111111
112112
- name: Checkout repo
113-
uses: actions/checkout@v4.1.7
113+
uses: actions/checkout@v4.2.0
114114
with:
115115
fetch-depth: 0
116116

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-24.04
1313
timeout-minutes: 30
1414
steps:
15-
- uses: actions/checkout@v4.1.7
15+
- uses: actions/checkout@v4.2.0
1616
- uses: actions/setup-python@v5
1717
with:
1818
python-version: '3.12'

.github/workflows/python_style_checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
timeout-minutes: 30
2020
steps:
21-
- uses: actions/checkout@v4.1.7
21+
- uses: actions/checkout@v4.2.0
2222
- uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.11'
@@ -34,7 +34,7 @@ jobs:
3434
# Steps represent a sequence of tasks that will be executed as part of the job
3535
steps:
3636
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
37-
- uses: actions/checkout@v4.1.7
37+
- uses: actions/checkout@v4.2.0
3838
# Set up a Python environment for use in actions
3939
- uses: actions/setup-python@v5
4040
with:
@@ -52,7 +52,7 @@ jobs:
5252
timeout-minutes: 30
5353

5454
steps:
55-
- uses: actions/checkout@v4.1.7
55+
- uses: actions/checkout@v4.2.0
5656
- name: Set up Python
5757
uses: actions/setup-python@v5
5858
with:

0 commit comments

Comments
 (0)