Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.

Commit a385ada

Browse files
Update actions/checkout action to v5
1 parent bdef5c6 commit a385ada

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-24.04
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
with:
1212
fetch-depth: 1
1313
- name: Set up Python

.github/workflows/codeql-analysis.yml

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

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL

.github/workflows/docker-extras.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
buildx-mavlink-api:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- name: Get the version
@@ -43,7 +43,7 @@ jobs:
4343
buildx-airspyfm:
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
with:
4848
fetch-depth: 0
4949
- name: Get the version

.github/workflows/docker-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,30 @@ jobs:
44
test-gamutrf-extra-images:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v4
7+
- uses: actions/checkout@v5
88
- name: docker build
99
run: |
1010
cd docker
1111
docker build -f Dockerfile.airspyfm . -t iqtlabs/gamutrf-airspyfm:latest
1212
test-gamutrf-mavlink-api:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: docker build
1717
run: |
1818
docker build -f utils/mavlink-api/Dockerfile.mavlink-api utils/mavlink-api -t iqtlabs/gamutrf-mavlink-api:latest
1919
test-gamutrf-waterfall-images:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: docker build
2424
run: |
2525
docker build -f docker/Dockerfile.waterfall . -t iqtlabs/gamutrf-waterfall:latest
2626
docker run -t iqtlabs/gamutrf-waterfall:latest gamutrf-waterfall --help
2727
test-gamutrf-images:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: docker build
3232
run: |
3333
docker build -f docker/Dockerfile.vkfft . -t iqtlabs/gamutrf-vkfft:latest

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
buildx-base:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- name: Get the version
@@ -80,7 +80,7 @@ jobs:
8080
needs: [buildx-base]
8181
runs-on: ubuntu-latest
8282
steps:
83-
- uses: actions/checkout@v4
83+
- uses: actions/checkout@v5
8484
with:
8585
fetch-depth: 0
8686
- name: Get the version

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
- name: Install Poetry

.github/workflows/secrets-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
scan:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
- name: scan
1111
run: |
1212
export DEBIAN_FRONTEND=noninteractive && \

.github/workflows/semgrep.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
docker_scan:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
repository: ${{ github.event.pull_request.head.repo.full_name }}
1717
ref: ${{ github.event.pull_request.head.ref }}
@@ -59,7 +59,7 @@ jobs:
5959
python_scan:
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@v4
62+
- uses: actions/checkout@v5
6363
with:
6464
repository: ${{ github.event.pull_request.head.repo.full_name }}
6565
ref: ${{ github.event.pull_request.head.ref }}

0 commit comments

Comments
 (0)