Skip to content

Commit

Permalink
pipelines: upgrade deprecated node12 actions [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrilevos committed May 10, 2023
1 parent 9f13928 commit 58857b4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker_build_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

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

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
id: docker_build_tzstamp_server
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: ./server/
platforms: linux/amd64
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker_build_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

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

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
id: docker_build_tzstamp_website
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: ./website/
platforms: linux/amd64
Expand Down

0 comments on commit 58857b4

Please sign in to comment.