Skip to content

Commit

Permalink
Bump action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
HippocampusGirl committed Oct 9, 2023
1 parent e83ffa5 commit b4a062e
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 @@ -15,17 +15,14 @@ jobs:
outputs:
tag: ${{ steps.build_tag.outputs.tag }}
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: hippocampusgirl
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.REGISTRY }}
username: ${{ secrets.REGISTRY_USERNAME }}
Expand Down Expand Up @@ -56,11 +53,14 @@ jobs:
echo "repo=${name}" >> ${GITHUB_OUTPUT}
echo "tag=${name}:${version}" >> ${GITHUB_OUTPUT}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build and push to container registry
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: "."
file: "./Dockerfile"
Expand Down

0 comments on commit b4a062e

Please sign in to comment.