Skip to content

Commit

Permalink
Update actions version to clear build warnings (#411)
Browse files Browse the repository at this point in the history
* Disable linux/390x for now

* Update main.yml

* Update main.yml

* Update main.yml

* Update all GH Actions

* Make everything active
  • Loading branch information
hardillb authored Feb 9, 2024
1 parent 33cce87 commit 72ff8d2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
-
name: Docker Metadata
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
flavor: |
latest=false
Expand All @@ -53,10 +53,10 @@ jobs:
-
name: Setup QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
-
name: Setup Docker buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: Get Date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%dT%H:%M:%SZ')"
Expand Down Expand Up @@ -132,14 +132,14 @@ jobs:
# echo "::set-output name=buildVersion::$VERSION"
-
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: build-push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
continue-on-error: true
with:
context: .
Expand Down Expand Up @@ -168,11 +168,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Setup QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
- name: Setup 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 }}
Expand All @@ -181,7 +181,7 @@ jobs:
run: echo "::set-output name=date::$(date +'%Y-%m-%dT%H:%M:%SZ')"
- name: Docker Metadata
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
flavor: |
latest=false
Expand Down

0 comments on commit 72ff8d2

Please sign in to comment.