Skip to content

Commit 6d7c409

Browse files
authored
fix: github action ci config (#759)
1 parent a66e056 commit 6d7c409

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ikaros_ci_build_dev_container.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
with:
1818
submodules: true
1919
- name: Git submodule init
@@ -52,19 +52,19 @@ jobs:
5252
./gradlew build -x test
5353
5454
- name: Set up QEMU
55-
uses: docker/setup-qemu-action@v1
55+
uses: docker/setup-qemu-action@v3
5656

5757
- name: Set up Docker Buildx
58-
uses: docker/setup-buildx-action@v1
58+
uses: docker/setup-buildx-action@v3
5959

6060
- name: Login to Docker Hub
61-
uses: docker/login-action@v1
61+
uses: docker/login-action@v3
6262
with:
6363
username: ${{ secrets.DOCKER_HUB_USERNAME }}
6464
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
6565

6666
- name: Build image and push
67-
uses: docker/build-push-action@v2
67+
uses: docker/build-push-action@v6
6868
with:
6969
context: .
7070
file: ./Dockerfile

.github/workflows/ikaros_ci_build_tag_container.yml

Lines changed: 5 additions & 5 deletions
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@v2
14+
- uses: actions/checkout@v4
1515
with:
1616
submodules: true
1717
- name: Git submodule init
@@ -50,19 +50,19 @@ jobs:
5050
./gradlew build -x test
5151
5252
- name: Set up QEMU
53-
uses: docker/setup-qemu-action@v1
53+
uses: docker/setup-qemu-action@v3
5454

5555
- name: Set up Docker Buildx
56-
uses: docker/setup-buildx-action@v1
56+
uses: docker/setup-buildx-action@v3
5757

5858
- name: Login to Docker Hub
59-
uses: docker/login-action@v1
59+
uses: docker/login-action@v3
6060
with:
6161
username: ${{ secrets.DOCKER_HUB_USERNAME }}
6262
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
6363

6464
- name: Build image and push
65-
uses: docker/build-push-action@v2
65+
uses: docker/build-push-action@v6
6666
with:
6767
context: .
6868
file: ./Dockerfile

0 commit comments

Comments
 (0)