Skip to content

Commit 5dbe1bc

Browse files
chore(deps): update github-actions
1 parent 1ef768a commit 5dbe1bc

3 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/build.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
steps:
1010
-
1111
name: Checkout
12-
uses: actions/checkout@v6
12+
uses: actions/checkout@v7
1313
with:
1414
submodules: recursive
1515
-
16-
uses: dorny/paths-filter@v3
16+
uses: dorny/paths-filter@v4
1717
id: filter
1818
with:
1919
filters: |
@@ -23,21 +23,21 @@ jobs:
2323
- 'python/**'
2424
-
2525
name: Set up QEMU
26-
uses: docker/setup-qemu-action@v3
26+
uses: docker/setup-qemu-action@v4
2727
-
2828
name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@v3
29+
uses: docker/setup-buildx-action@v4
3030
-
3131
name: Login to Quay.io Container Registry
32-
uses: docker/login-action@v3
32+
uses: docker/login-action@v4
3333
with:
3434
registry: quay.io
3535
username: ${{ secrets.QUAYIO_USERNAME }}
3636
password: ${{ secrets.QUAYIO_TOKEN }}
3737
-
3838
name: Build go app image
3939
if: steps.filter.outputs.golang == 'true'
40-
uses: docker/build-push-action@v6
40+
uses: docker/build-push-action@v7
4141
with:
4242
context: go
4343
push: true
@@ -58,14 +58,14 @@ jobs:
5858
-
5959
name: Archive vulnerability scan results
6060
if: steps.filter.outputs.golang == 'true'
61-
uses: actions/upload-artifact@v6
61+
uses: actions/upload-artifact@v7
6262
with:
6363
name: trivy-results-go-main
6464
path: trivy-results-go.txt
6565
-
6666
name: Build python app image
6767
if: steps.filter.outputs.python == 'true'
68-
uses: docker/build-push-action@v6
68+
uses: docker/build-push-action@v7
6969
with:
7070
context: python
7171
push: true
@@ -86,7 +86,7 @@ jobs:
8686
-
8787
name: Archive vulnerability scan results
8888
if: steps.filter.outputs.python == 'true'
89-
uses: actions/upload-artifact@v6
89+
uses: actions/upload-artifact@v7
9090
with:
9191
name: trivy-results-py-main
9292
path: trivy-results-py.txt

.github/workflows/pr-cleanup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
-
1111
name: Checkout
12-
uses: actions/checkout@v6
12+
uses: actions/checkout@v7
1313
with:
1414
submodules: recursive
1515
-

.github/workflows/push-main.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
steps:
1212
-
1313
name: Checkout
14-
uses: actions/checkout@v6
14+
uses: actions/checkout@v7
1515
with:
1616
submodules: recursive
1717
-
18-
uses: dorny/paths-filter@v3
18+
uses: dorny/paths-filter@v4
1919
id: filter
2020
with:
2121
filters: |
@@ -25,21 +25,21 @@ jobs:
2525
- 'python/**'
2626
-
2727
name: Set up QEMU
28-
uses: docker/setup-qemu-action@v3
28+
uses: docker/setup-qemu-action@v4
2929
-
3030
name: Set up Docker Buildx
31-
uses: docker/setup-buildx-action@v3
31+
uses: docker/setup-buildx-action@v4
3232
-
3333
name: Login to Quay.io Container Registry
34-
uses: docker/login-action@v3
34+
uses: docker/login-action@v4
3535
with:
3636
registry: quay.io
3737
username: ${{ secrets.QUAYIO_USERNAME }}
3838
password: ${{ secrets.QUAYIO_TOKEN }}
3939
-
4040
name: Build go app image
4141
if: steps.filter.outputs.golang == 'true'
42-
uses: docker/build-push-action@v6
42+
uses: docker/build-push-action@v7
4343
with:
4444
context: go
4545
push: true
@@ -60,14 +60,14 @@ jobs:
6060
-
6161
name: Archive vulnerability scan results
6262
if: steps.filter.outputs.golang == 'true'
63-
uses: actions/upload-artifact@v6
63+
uses: actions/upload-artifact@v7
6464
with:
6565
name: trivy-results-main
6666
path: trivy-results.txt
6767
-
6868
name: Build python app image
6969
if: steps.filter.outputs.python == 'true'
70-
uses: docker/build-push-action@v6
70+
uses: docker/build-push-action@v7
7171
with:
7272
context: python
7373
push: true
@@ -88,7 +88,7 @@ jobs:
8888
-
8989
name: Archive vulnerability scan results
9090
if: steps.filter.outputs.python == 'true'
91-
uses: actions/upload-artifact@v6
91+
uses: actions/upload-artifact@v7
9292
with:
9393
name: trivy-results-main
9494
path: trivy-results.txt

0 commit comments

Comments
 (0)