Skip to content

Commit 30d0a30

Browse files
authored
Merge pull request #2132 from IntelPython/dependabot/github_actions/actions/checkout-5.0.0
Bump actions/checkout from 4.2.2 to 5.0.0
2 parents 8ae6272 + 3d85b77 commit 30d0a30

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
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
access_token: ${{ github.token }}
3333

34-
- uses: actions/checkout@v4.2.2
34+
- uses: actions/checkout@v5.0.0
3535
with:
3636
fetch-depth: 0
3737

@@ -92,7 +92,7 @@ jobs:
9292
with:
9393
access_token: ${{ github.token }}
9494

95-
- uses: actions/checkout@v4.2.2
95+
- uses: actions/checkout@v5.0.0
9696
with:
9797
fetch-depth: 0
9898

@@ -527,7 +527,7 @@ jobs:
527527
conda update -n base --all
528528
conda install conda-index -c conda-forge --override-channels
529529
- name: Checkout dpctl repo
530-
uses: actions/checkout@v4.2.2
530+
uses: actions/checkout@v5.0.0
531531
with:
532532
fetch-depth: 0
533533
- name: Download artifact
@@ -682,7 +682,7 @@ jobs:
682682
run: |
683683
echo ${{ env.CHANNELS }}
684684
- name: Checkout dpctl repo
685-
uses: actions/checkout@v4.2.2
685+
uses: actions/checkout@v5.0.0
686686
with:
687687
fetch-depth: 0
688688
- name: Cache array API tests
@@ -830,7 +830,7 @@ jobs:
830830
run: conda install anaconda-client -c conda-forge --override-channels
831831

832832
- name: Checkout repo
833-
uses: actions/checkout@v4.2.2
833+
uses: actions/checkout@v5.0.0
834834
with:
835835
repository: IntelPython/devops-tools
836836
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.2
20+
- uses: actions/checkout@v5.0.0
2121
- name: Run clang-format style check for C/C++ programs.
2222
uses: jidicula/[email protected]
2323
with:

.github/workflows/generate-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
make && make install
8181
8282
- name: Checkout repo
83-
uses: actions/checkout@v4.2.2
83+
uses: actions/checkout@v5.0.0
8484
with:
8585
fetch-depth: 0
8686

.github/workflows/generate-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
sphinxcontrib-jsmath sphinx-copybutton sphinxcontrib-spelling \
6464
versioneer[toml]==0.29
6565
- name: Checkout repo
66-
uses: actions/checkout@v4.2.2
66+
uses: actions/checkout@v5.0.0
6767
with:
6868
fetch-depth: 0
6969
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
37+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.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"<80" pytest scikit-build cmake ninja versioneer[toml]==0.29
111111
112112
- name: Checkout repo
113-
uses: actions/checkout@v4.2.2
113+
uses: actions/checkout@v5.0.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.2.2
15+
- uses: actions/checkout@v5.0.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.2.2
21+
- uses: actions/checkout@v5.0.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.2.2
37+
- uses: actions/checkout@v5.0.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.2.2
55+
- uses: actions/checkout@v5.0.0
5656
- name: Set up Python
5757
uses: actions/setup-python@v5
5858
with:

0 commit comments

Comments
 (0)