Skip to content

Commit

Permalink
Bump actions/checkout from 4.1.1 to 4.1.3
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Commits](actions/checkout@v4.1.1...v4.1.3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Apr 22, 2024
1 parent 7757857 commit ad90fac
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
matrix:
python: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
with:
fetch-depth: 0

Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
env:
conda-bld: C:\Miniconda\conda-bld\win-64\
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v3
Expand Down Expand Up @@ -429,7 +429,7 @@ jobs:
# Needed to be able to run conda index
run: conda install conda-build python=${{ matrix.python }}
- name: Checkout dpctl repo
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- name: Download artifact
Expand Down Expand Up @@ -572,7 +572,7 @@ jobs:
CHANNELS: -c intel -c conda-forge --override-channels
steps:
- name: Checkout dpctl repo
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- name: Cache array API tests
Expand Down Expand Up @@ -715,7 +715,7 @@ jobs:
run: conda install anaconda-client

- name: Checkout repo
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.3
with:
repository: IntelPython/devops-tools
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpp_style_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: clang-format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- name: Run clang-format style check for C/C++ programs.
uses: jidicula/clang-format-action@v4.11.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
make && make install
- name: Checkout repo
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
sphinxcontrib-programoutput sphinxcontrib-googleanalytics sphinx-design \
sphinxcontrib-jsmath sphinx-copybutton sphinxcontrib-spelling
- name: Checkout repo
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openssf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/os-llvm-sycl-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
pip install numpy"<1.26.0" cython setuptools pytest scikit-build cmake ninja
- name: Checkout repo
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
pre-commit:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- uses: actions/setup-python@v5
with:
python-version: '3.10'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python_style_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- uses: actions/setup-python@v5
with:
python-version: '3.11'
Expand All @@ -32,7 +32,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
# Set up a Python environment for use in actions
- uses: actions/setup-python@v5
with:
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit ad90fac

Please sign in to comment.