Skip to content

Commit 13cbd8d

Browse files
Bump actions/checkout from 3 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 08c5886 commit 13cbd8d

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/codeql-analysis.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v5
3333
- name: Setup Pages
3434
uses: actions/configure-pages@v3
3535
- name: Upload artifact

.github/workflows/pipup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# Steps represent a sequence of tasks that will be executed as part of the job
2121
steps:
2222
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v5
2424

2525
# Sets up python
2626
- uses: actions/setup-python@v4

.github/workflows/push-gitLab.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v5
1010
- name: Mirror + trigger CI
1111
uses: SvanBoxel/gitlab-mirror-and-ci-action@master
1212
with:

.github/workflows/pypi-setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
os: [ubuntu-latest,macos-latest,windows-latest] #,windows-latest
1717
python-version: [3.7, 3.8, 3.9]
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v5
2020
- name: Set up Python ${{matrix.python-version}}
2121
uses: actions/setup-python@v4
2222
with:

.github/workflows/python-app-on-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os: [ubuntu-latest]
1212
python-version: [3.7, 3.8, 3.9]
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v5
1515
- name: Set up Python ${{ matrix.python-version }}
1616
uses: actions/setup-python@v4
1717
with:

.github/workflows/python-app-on-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os: [macos-latest]
1212
python-version: [3.6, 3.7, 3.8, 3.9]
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v5
1515
- name: Set up Python ${{ matrix.python-version }}
1616
uses: actions/setup-python@v4
1717
with:

.github/workflows/python-app-on-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os: [windows-latest]
1212
python-version: [3.6, 3.7, 3.8, 3.9]
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v5
1515
- name: Set up Python ${{ matrix.python-version }}
1616
uses: actions/setup-python@v4
1717
with:

0 commit comments

Comments
 (0)