Skip to content

Commit 09638d8

Browse files
chore(deps): bump actions/checkout from 4 to 5 (#1625)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 46fba98 commit 09638d8

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.github/workflows/codeql-analysis.yml

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

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
# Initializes the CodeQL tools for scanning.
3636
- name: Initialize CodeQL

.github/workflows/deploy-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build Docusaurus
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121
- uses: actions/setup-node@v4

.github/workflows/deploy-rtmp-proxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: get container name
2121
run: |
2222
echo "containername=${{ matrix.module }}" | sed 's/\//-/g' > $GITHUB_ENV
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
ref: ${{ github.event.pull_request.head.sha }}
2626
- name: Docker meta (${{ matrix.module }})

.github/workflows/deploy-runners.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: get container name
2121
run: |
2222
echo "containername=${{ matrix.module }}" | sed 's/\//-/g' > $GITHUB_ENV
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
ref: ${{ github.event.pull_request.head.sha }}
2626
- name: Docker meta (${{ matrix.module }})

.github/workflows/deploy-server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Docker meta
1919
id: meta
2020
uses: docker/metadata-action@v5

.github/workflows/deploy-workers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: get container name
2121
run: |
2222
echo "containername=${{ matrix.module }}" | sed 's/\//-/g' > $GITHUB_ENV
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
ref: ${{ github.event.pull_request.head.sha }}
2626
- name: Docker meta (${{ matrix.module }})

.github/workflows/eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Install modules
1616
working-directory: ./web
1717
run: npm ci

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Install modules
1818
working-directory: ./web
1919
run: npm ci

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/setup-go@v5
1717
with:
1818
go-version: 1.22
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: Install modules
2121
working-directory: ./web
2222
run: npm ci

0 commit comments

Comments
 (0)