mirror of
https://github.com/apache/nuttx.git
synced 2026-03-23 13:14:50 +08:00
CI: Revert GitHub Actions for Docker
Some checks failed
Docker-Linux / push (push) Has been cancelled
Some checks failed
Docker-Linux / push (push) Has been cancelled
All CI Builds have been failing since 18 hours ago. That's because ASF Infrastructure Team has mandated that we use the Specific Versions of GitHub Actions for Docker, stated below: - https://github.com/apache/infrastructure-actions/blob/main/actions.yml - Which generates: https://github.com/apache/infrastructure-actions/blob/main/approved_patterns.yml ```yaml docker/build-push-action: 10e90e3645eae34f1e60eeb005ba3a3d33f178e8: tag: v6.19.2 docker/login-action: c94ce9fb468520275223c153574b00df6fe4bcc9: tag: v3.7.0 docker/metadata-action: c299e40c65443455700f0fdfc63efafe5b349051: tag: v5.10.0 docker/setup-buildx-action: 8d2750c68a42422c14e847fe6c8ac0403b4cbd6f: tag: v3.12.0 ``` This PR reverts our GitHub Actions for Docker to the versions stated above. Signed-off-by: Lup Yuen Lee <luppy@appkaki.com>
This commit is contained in:
committed by
Matteo Golin
parent
228eae22a0
commit
bef5603844
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -172,7 +172,7 @@ jobs:
|
||||
run: tar zxf sources.tar.gz
|
||||
|
||||
- name: Docker Login
|
||||
uses: docker/login-action@v4
|
||||
uses: docker/login-action@v3.7.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
@@ -262,7 +262,7 @@ jobs:
|
||||
run: tar zxf sources.tar.gz
|
||||
|
||||
- name: Docker Login
|
||||
uses: docker/login-action@v4
|
||||
uses: docker/login-action@v3.7.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
|
||||
6
.github/workflows/docker_linux.yml
vendored
6
.github/workflows/docker_linux.yml
vendored
@@ -66,10 +66,10 @@ jobs:
|
||||
swap-storage: true
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v4
|
||||
uses: docker/setup-buildx-action@v3.12.0
|
||||
|
||||
- name: Log into registry
|
||||
uses: docker/login-action@v4
|
||||
uses: docker/login-action@v3.7.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
@@ -78,7 +78,7 @@ jobs:
|
||||
run: |
|
||||
df -h
|
||||
- name: Push Linux image
|
||||
uses: docker/build-push-action@v7
|
||||
uses: docker/build-push-action@v6.19.2
|
||||
with:
|
||||
context: tools/ci/docker/linux
|
||||
platforms: linux/amd64
|
||||
|
||||
Reference in New Issue
Block a user