Skip to content

Commit f747eb3

Browse files
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] <support@github.com>
1 parent 3fa7065 commit f747eb3

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
clang-format:
1010
runs-on: ubuntu-22.04
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: clang-format
1414
run: |
1515
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src
1616
build-binary:
1717
runs-on: ubuntu-22.04
1818
needs: clang-format
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: create version.h
2222
run: |
2323
git_hash=$(git rev-parse --short "$GITHUB_SHA")

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
clang-format:
77
runs-on: ubuntu-22.04
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
- name: clang-format
1111
run: |
1212
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src
1313
check-build-with-logging:
1414
runs-on: ubuntu-22.04
1515
needs: clang-format
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: build binary with logging
1919
run: |
2020
docker build . -t builder
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-22.04
2626
needs: clang-format
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: create version.h
3030
run: |
3131
git_hash=$(git rev-parse --short "${{ github.event.pull_request.head.sha }}")

0 commit comments

Comments
 (0)