Skip to content

Commit 8299366

Browse files
author
Andreas Mautz
committed
[INFRA] update gitlab actions
1 parent 888e69e commit 8299366

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: "Build on main"
22
on:
33
workflow_dispatch:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- main
67

78
jobs:
89
scheduler:
@@ -13,20 +14,20 @@ jobs:
1314
version: [ 'buster', 'bullseye', 'bookworm' ]
1415
steps:
1516
- name: Checkout
16-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1718
- name: Set up QEMU
18-
uses: docker/setup-qemu-action@v1
19+
uses: docker/setup-qemu-action@v3
1920
- name: Set up Docker Buildx
2021
id: buildx
21-
uses: docker/setup-buildx-action@v1
22+
uses: docker/setup-buildx-action@v3
2223
- name: Login to DockerHub
23-
uses: docker/login-action@v1
24+
uses: docker/login-action@v3
2425
with:
2526
username: ${{ secrets.DOCKER_HUB_USERNAME }}
2627
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
2728
- name: Build and push
2829
id: docker_build
29-
uses: docker/build-push-action@v2
30+
uses: docker/build-push-action@v6
3031
with:
3132
push: true
3233
platforms: linux/amd64,linux/arm64

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
container: pipelinecomponents/hadolint:latest
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: hadolint/hadolint-action@v1.5.0
15+
- uses: actions/checkout@v4
16+
- uses: hadolint/hadolint-action@v3.1.0
1717
with:
1818
dockerfile: ./src/${{ matrix.version }}/src/Dockerfile

.github/workflows/schedule.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ jobs:
1313
version: [ 'buster', 'bullseye', 'bookworm' ]
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
- name: Set up QEMU
18-
uses: docker/setup-qemu-action@v1
18+
uses: docker/setup-qemu-action@v3
1919
- name: Set up Docker Buildx
2020
id: buildx
21-
uses: docker/setup-buildx-action@v1
21+
uses: docker/setup-buildx-action@v3
2222
- name: Login to DockerHub
23-
uses: docker/login-action@v1
23+
uses: docker/login-action@v3
2424
with:
2525
username: ${{ secrets.DOCKER_HUB_USERNAME }}
2626
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
2727
- name: Build and push
2828
id: docker_build
29-
uses: docker/build-push-action@v2
29+
uses: docker/build-push-action@v6
3030
with:
3131
push: true
3232
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)