Skip to content

Commit

Permalink
chore: update GitHub actions packages versions
Browse files Browse the repository at this point in the history
  • Loading branch information
evereq committed Feb 27, 2024
1 parent 4627a21 commit fdb344d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-build-publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx

Check warning on line 24 in .github/workflows/docker-build-publish-dev.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (Buildx)
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

Check warning on line 25 in .github/workflows/docker-build-publish-dev.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (buildx)

- name: Output NEXT_PUBLIC_GAUZY_API_SERVER_URL
run: echo "NEXT_PUBLIC_GAUZY_API_SERVER_URL=${{ secrets.NEXT_PUBLIC_GAUZY_API_SERVER_URL }}"

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
NEXT_PUBLIC_CHATWOOT_API_KEY=${{ secrets.NEXT_PUBLIC_CHATWOOT_API_KEY }}
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}

Check warning on line 64 in .github/workflows/docker-build-publish-dev.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (DOCKERHUB)
password: ${{ secrets.DOCKERHUB_TOKEN }}

Check warning on line 65 in .github/workflows/docker-build-publish-dev.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (DOCKERHUB)
Expand All @@ -81,7 +81,7 @@ jobs:
docker push registry.digitalocean.com/ever/ever-teams-webapp-dev:latest
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -92,7 +92,7 @@ jobs:
docker push ghcr.io/ever-co/ever-teams-webapp-dev:latest
- name: Login to CW Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.CW_DOCKER_REGISTRY }}
username: ${{ secrets.CW_DOCKER_USER }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docker-build-publish-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx

Check warning on line 24 in .github/workflows/docker-build-publish-prod.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (Buildx)
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

Check warning on line 25 in .github/workflows/docker-build-publish-prod.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (buildx)

- name: Output NEXT_PUBLIC_GAUZY_API_SERVER_URL
run: echo "NEXT_PUBLIC_GAUZY_API_SERVER_URL=${{ secrets.NEXT_PUBLIC_GAUZY_API_SERVER_URL }}"

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
NEXT_PUBLIC_CHATWOOT_API_KEY=${{ secrets.NEXT_PUBLIC_CHATWOOT_API_KEY }}
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}

Check warning on line 64 in .github/workflows/docker-build-publish-prod.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (DOCKERHUB)
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -81,7 +81,7 @@ jobs:
docker push registry.digitalocean.com/ever/ever-teams-webapp:latest
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -92,7 +92,7 @@ jobs:
docker push ghcr.io/ever-co/ever-teams-webapp:latest
- name: Login to CW Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.CW_DOCKER_REGISTRY }}
username: ${{ secrets.CW_DOCKER_USER }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docker-build-publish-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

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

- name: Output NEXT_PUBLIC_GAUZY_API_SERVER_URL
run: echo "NEXT_PUBLIC_GAUZY_API_SERVER_URL=${{ secrets.NEXT_PUBLIC_GAUZY_API_SERVER_URL }}"

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
NEXT_PUBLIC_CHATWOOT_API_KEY=${{ secrets.NEXT_PUBLIC_CHATWOOT_API_KEY }}
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -81,7 +81,7 @@ jobs:
docker push registry.digitalocean.com/ever/ever-teams-webapp-stage:latest
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -92,7 +92,7 @@ jobs:
docker push ghcr.io/ever-co/ever-teams-webapp-stage:latest
- name: Login to CW Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.CW_DOCKER_REGISTRY }}
username: ${{ secrets.CW_DOCKER_USER }}
Expand Down

0 comments on commit fdb344d

Please sign in to comment.