Skip to content

Commit 788c2ac

Browse files
dependabot[bot]XinfengZhang
authored andcommitted
build(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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 b00599b commit 788c2ac

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
build:
1818
runs-on: ubuntu-22.04
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: install prerequisites
2222
run: |
2323
sudo apt-get update

.github/workflows/freebsd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: 'Checkout'
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
- name: 'Install prerequisites and build'
1515
uses: vmactions/freebsd-vm@v1
1616
with:

.github/workflows/ghpages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-22.04
2323
steps:
2424
- name: 'Checkout'
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
2828
- name: 'Get latest tag'

.github/workflows/style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
steps:
1212
- name: 'Checkout'
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
- name: 'Install prerequisites'
1515
run: |
1616
sudo apt-get update

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
DISTRO: ${{ matrix.os }}
2222
steps:
2323
- name: 'Checkout'
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
- name: 'Install toolchain'
2626
if: ${{ (matrix.compiler == 'clang') && (matrix.os == 'ubuntu-22.04') }}
2727
run: .github/workflows/install-clang.sh 15

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: windows-2022
1111
steps:
1212
- name: 'Checkout'
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
- name: 'Setup Python'
1515
uses: actions/setup-python@v5
1616
with:
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: windows-2022
3232
steps:
3333
- name: 'Checkout'
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
- name: 'Setup Python'
3636
uses: actions/setup-python@v5
3737
with:
@@ -57,7 +57,7 @@ jobs:
5757
shell: msys2 {0}
5858
steps:
5959
- name: 'Checkout'
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v5
6161
- name: 'Setup MSYS2'
6262
uses: msys2/setup-msys2@v2
6363
with:

0 commit comments

Comments
 (0)