Skip to content

Commit 695df3f

Browse files
ci: bump actions/checkout from 5 to 6 (#451)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 91d8533 commit 695df3f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
check:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v5
7+
- uses: actions/checkout@v6
88
- uses: actions/setup-python@v6
99
- name: install tools
1010
run: pip install flake8 black

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Upload website to interop.seemann.io
1414
uses: burnett01/rsync-deployments@33214bd98ba4ac2be90f5976672b3f030fce9ce4 # v7.1.0
1515
with:

.github/workflows/interop.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
STARTTIME=$(date +%s)
2828
echo $STARTTIME
2929
echo "starttime=$STARTTIME" >> $GITHUB_OUTPUT
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- uses: actions/setup-python@v6
3232
with:
3333
python-version: 3.8
@@ -55,7 +55,7 @@ jobs:
5555
matrix:
5656
image: [ 'quic-network-simulator', 'quic-interop-iperf-endpoint' ]
5757
steps:
58-
- uses: actions/checkout@v5
58+
- uses: actions/checkout@v6
5959
- name: Pull
6060
run: |
6161
URL="martenseemann/${{ matrix.image }}"
@@ -81,7 +81,7 @@ jobs:
8181
image: ${{ fromJson(needs.config.outputs.images) }}
8282
name: Pull ${{ matrix.image }}
8383
steps:
84-
- uses: actions/checkout@v5
84+
- uses: actions/checkout@v6
8585
- name: Run docker pull
8686
run: |
8787
URL=$(jq -r '.["${{ matrix.image }}"].image' implementations.json)
@@ -112,7 +112,7 @@ jobs:
112112
client: ${{ fromJson(needs.config.outputs.clients) }}
113113
name: (${{ matrix.server }} - ${{ matrix.client }})
114114
steps:
115-
- uses: actions/checkout@v5
115+
- uses: actions/checkout@v6
116116
# Remove this when GitHub runner gets docker engine >= v28.1.0.
117117
- uses: docker/setup-docker-action@v4
118118
with:
@@ -198,7 +198,7 @@ jobs:
198198
env:
199199
LOGNAME: ${{ needs.config.outputs.logname }}
200200
steps:
201-
- uses: actions/checkout@v5
201+
- uses: actions/checkout@v6
202202
- uses: actions/setup-python@v6
203203
with:
204204
python-version: 3.8

0 commit comments

Comments
 (0)