Skip to content

Commit

Permalink
Update GitHub Actions (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Liebig authored Feb 19, 2024
1 parent 10b1fdb commit 57fa8e5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,19 +178,19 @@ jobs:
name: Build Image
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
push: "${{ github.ref == 'refs/heads/master' }}"
context: "${{ matrix.path }}"
Expand All @@ -207,9 +207,9 @@ jobs:
repository: riptidepy/sphinx
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Update description
uses: peter-evans/dockerhub-description@v2
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down

0 comments on commit 57fa8e5

Please sign in to comment.