Skip to content

Commit b7d8996

Browse files
authored
Merge pull request #240 from emarsden/dependabot/github_actions/actions/checkout-6.0.3
Build(deps): bump actions/checkout from 6.0.2 to 6.0.3
2 parents e284c8c + a9ad38b commit b7d8996

10 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: dash-mpd-cli check/nightly
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v6.0.2
10+
- uses: actions/checkout@v6.0.3
1111
with:
1212
fetch-depth: 0
1313

@@ -45,7 +45,7 @@ jobs:
4545
build-macos:
4646
runs-on: macos-latest
4747
steps:
48-
- uses: actions/checkout@v6.0.2
48+
- uses: actions/checkout@v6.0.3
4949
with:
5050
fetch-depth: 0
5151
- uses: actions-rust-lang/setup-rust-toolchain@v1
@@ -101,7 +101,7 @@ jobs:
101101
build-windows:
102102
runs-on: windows-latest
103103
steps:
104-
- uses: actions/checkout@v6.0.2
104+
- uses: actions/checkout@v6.0.3
105105
with:
106106
fetch-depth: 0
107107
- uses: actions-rust-lang/setup-rust-toolchain@v1

.github/workflows/container-parallel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: sudo apt-get update && sudo apt-get -y install qemu-user-static
2929

3030
- name: Checkout sources
31-
uses: actions/checkout@v6.0.2
31+
uses: actions/checkout@v6.0.3
3232

3333
# We use "buildah build" instead of "podman build", because we are seeing errors on the older
3434
# version of podman installed on the runners.
@@ -44,7 +44,7 @@ jobs:
4444
run: sudo apt-get -y install qemu-user-static
4545

4646
- name: Checkout sources
47-
uses: actions/checkout@v6.0.2
47+
uses: actions/checkout@v6.0.3
4848

4949
- name: Build image/aarch64
5050
run: buildah build -f etc/Containerfile_linux_aarch64 --platform linux/arm64 --tag dash-mpd-cli-linux-aarch64 --manifest dash-mpd-cli .
@@ -68,7 +68,7 @@ jobs:
6868
sudo ln -s /usr/local/bin/qemu-arm-static /usr/libexec/qemu-binfmt/arm-binfmt-P
6969
7070
- name: Checkout sources
71-
uses: actions/checkout@v6.0.2
71+
uses: actions/checkout@v6.0.3
7272

7373
- name: Build image/armv7
7474
run: buildah build -f etc/Containerfile_linux_armv7 --platform linux/arm/v7 --tag dash-mpd-cli-linux-armv7 --manifest dash-mpd-cli .
@@ -98,7 +98,7 @@ jobs:
9898
sudo ln -s /usr/local/bin/qemu-riscv64-static /usr/libexec/qemu-binfmt/riscv64-binfmt-P
9999
100100
- name: Checkout sources
101-
uses: actions/checkout@v6.0.2
101+
uses: actions/checkout@v6.0.3
102102

103103
- name: Build image/riscv64
104104
run: buildah build -f etc/Containerfile_linux_riscv64 --platform linux/riscv64 --tag dash-mpd-cli-linux-riscv64 --manifest dash-mpd-cli .

.github/workflows/container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: sudo apt-get update && sudo apt-get install qemu-user-static
3232

3333
- name: Checkout sources
34-
uses: actions/checkout@v6.0.2
34+
uses: actions/checkout@v6.0.3
3535

3636
- name: Log in to ghcr.io
3737
uses: redhat-actions/podman-login@v1

.github/workflows/freebsd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v6.0.2
16+
- uses: actions/checkout@v6.0.3
1717
- name: Run tests in FreeBSD VM
1818
uses: cross-platform-actions/action@v1.2.0
1919
with:

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: macos-26
1111

1212
steps:
13-
- uses: actions/checkout@v6.0.2
13+
- uses: actions/checkout@v6.0.3
1414
with:
1515
fetch-depth: 0
1616

.github/workflows/mdbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions-rust-lang/setup-rust-toolchain@v1
1919

2020
- name: Checkout
21-
uses: actions/checkout@v6.0.2
21+
uses: actions/checkout@v6.0.3
2222
with:
2323
fetch-depth: 0
2424

.github/workflows/release-bin-manual.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
create-release:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v6.0.2
10+
- uses: actions/checkout@v6.0.3
1111
- uses: taiki-e/create-gh-release-action@v1.11.0
1212
with:
1313
changelog: CHANGELOG.md
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install protobuf compiler
3535
run: sudo apt-get update && sudo apt-get install protobuf-compiler
3636

37-
- uses: actions/checkout@v6.0.2
37+
- uses: actions/checkout@v6.0.3
3838
- uses: taiki-e/upload-rust-binary-action@v1.30.2
3939
with:
4040
bin: dash-mpd-cli

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Release for Linux/amd64/musl
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v6.0.2
25+
- uses: actions/checkout@v6.0.3
2626
with:
2727
fetch-depth: 0
2828

@@ -57,7 +57,7 @@ jobs:
5757
name: Release for Linux/aarch64
5858
runs-on: ubuntu-latest
5959
steps:
60-
- uses: actions/checkout@v6.0.2
60+
- uses: actions/checkout@v6.0.3
6161
with:
6262
fetch-depth: 0
6363

@@ -98,7 +98,7 @@ jobs:
9898
name: Release universal binary for MacOS
9999
runs-on: macos-26
100100
steps:
101-
- uses: actions/checkout@v6.0.2
101+
- uses: actions/checkout@v6.0.3
102102
with:
103103
fetch-depth: 0
104104

@@ -139,7 +139,7 @@ jobs:
139139
name: Release for Windows/amd64
140140
runs-on: windows-latest
141141
steps:
142-
- uses: actions/checkout@v6.0.2
142+
- uses: actions/checkout@v6.0.3
143143
with:
144144
fetch-depth: 0
145145

.github/workflows/solaris.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v6.0.2
16+
- uses: actions/checkout@v6.0.3
1717
- name: Run tests in Solaris VM
1818
uses: vmactions/solaris-vm@v1.3.6
1919
with:

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v6.0.2
12+
uses: actions/checkout@v6.0.3
1313
with:
1414
fetch-depth: 0
1515

0 commit comments

Comments
 (0)