Skip to content

Commit 5dee5b7

Browse files
Merge pull request #1864 from IntelPython/dependabot/github_actions/actions/checkout-4.2.1
Bump actions/checkout from 4.2.0 to 4.2.1
2 parents a38af8c + 4f10a76 commit 5dee5b7

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.2.0
28+
- uses: actions/checkout@v4.2.1
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.2.0
84+
- uses: actions/checkout@v4.2.1
8585
with:
8686
fetch-depth: 0
8787

@@ -501,7 +501,7 @@ jobs:
501501
# Needed to be able to run conda index
502502
run: conda install conda-index -c conda-forge --override-channels
503503
- name: Checkout dpctl repo
504-
uses: actions/checkout@v4.2.0
504+
uses: actions/checkout@v4.2.1
505505
with:
506506
fetch-depth: 0
507507
- name: Download artifact
@@ -651,7 +651,7 @@ jobs:
651651
run: |
652652
echo ${{ env.CHANNELS }}
653653
- name: Checkout dpctl repo
654-
uses: actions/checkout@v4.2.0
654+
uses: actions/checkout@v4.2.1
655655
with:
656656
fetch-depth: 0
657657
- name: Cache array API tests
@@ -795,7 +795,7 @@ jobs:
795795
run: conda install anaconda-client -c conda-forge --override-channels
796796

797797
- name: Checkout repo
798-
uses: actions/checkout@v4.2.0
798+
uses: actions/checkout@v4.2.1
799799
with:
800800
repository: IntelPython/devops-tools
801801
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.2.0
20+
- uses: actions/checkout@v4.2.1
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.2.0
85+
uses: actions/checkout@v4.2.1
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.2.0
63+
uses: actions/checkout@v4.2.1
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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
37+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
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.2.0
113+
uses: actions/checkout@v4.2.1
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.2.0
15+
- uses: actions/checkout@v4.2.1
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.2.0
21+
- uses: actions/checkout@v4.2.1
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.2.0
37+
- uses: actions/checkout@v4.2.1
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.2.0
55+
- uses: actions/checkout@v4.2.1
5656
- name: Set up Python
5757
uses: actions/setup-python@v5
5858
with:

0 commit comments

Comments
 (0)