Skip to content

Commit fb97ad6

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

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/alpine.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
container: alpine
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: Install dependencies
1717
run: |
1818
apk add build-base openssl-dev zlib-dev pcre2-dev \
1919
cmake git grpc-dev protobuf-dev \
2020
python3
2121
- name: Checkout nginx
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
repository: nginx/nginx
2525
path: nginx

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
- name: Install dependencies
1616
run: |
1717
sudo apt-get update
1818
sudo apt-get install -y cmake libc-ares-dev
1919
- name: Checkout nginx
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
repository: nginx/nginx
2323
path: nginx

0 commit comments

Comments
 (0)