Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
robkooper committed Aug 22, 2024
1 parent 7f9cb28 commit 781eab0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cd ED/build
./install.sh -g -p travisci -k A
- name: Upload compiled ED2 binary
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ed2-binary
path: ED/build/ed_2.2-dbg
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ jobs:
# setup docker build
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Inspect Builder
run: |
Expand All @@ -148,13 +148,13 @@ jobs:
# login to registries
- name: Login to DockerHub
if: env.DOCKERHUB_PUSH == 'true'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -165,7 +165,7 @@ jobs:

# build the dev docker images
- name: Build and push docker
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
platforms: ${{ matrix.PLATFORM }}
Expand All @@ -182,7 +182,7 @@ jobs:
# build the docker images
- name: Build and push docker
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
platforms: ${{ matrix.PLATFORM }}
Expand Down

0 comments on commit 781eab0

Please sign in to comment.