Skip to content

Commit

Permalink
build(deps): bump the actions group with 7 updates
Browse files Browse the repository at this point in the history
Bumps the actions group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `3` | `4` |
| [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `2.9.1` | `3.0.0` |
| [docker/build-push-action](https://github.com/docker/build-push-action) | `4.1.1` | `5.0.0` |
| [ghalactic/github-release-from-tag](https://github.com/ghalactic/github-release-from-tag) | `4` | `5` |
| [docker/login-action](https://github.com/docker/login-action) | `2.2.0` | `3.0.0` |
| [docker/metadata-action](https://github.com/docker/metadata-action) | `4.6.0` | `5.0.0` |
| [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `2.2.0` | `3.0.0` |

Originally from #29.

Signed-off-by: Austin Ziegler <[email protected]>
  • Loading branch information
halostatue committed Oct 30, 2023
1 parent c396f73 commit 546b1cb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
name: Build Test Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: docker/setup-buildx-action@v2.10.0
- uses: docker/setup-buildx-action@v3.0.0

- id: docker_build
uses: docker/build-push-action@v4.1.1
uses: docker/build-push-action@v5.0.0
with:
context: .
load: true
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: ubuntu-latest
name: Create Release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: github.event_name == 'push'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: github.event_name == 'workflow_dispatch'
with:
ref: refs/tags/${{ github.event.inputs.tag }}
Expand All @@ -30,26 +30,26 @@ jobs:
name: Build and Push to Docker Hub
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: github.event_name == 'push'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: github.event_name == 'workflow_dispatch'
with:
ref: refs/tags/${{ github.event.inputs.tag }}

- uses: docker/login-action@v2.2.0
- uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- uses: docker/login-action@v2.2.0
- uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- id: meta
uses: docker/metadata-action@v4.6.0
uses: docker/metadata-action@v5.0.0
with:
images: |
kineticcafe/ansible
Expand All @@ -64,11 +64,11 @@ jobs:
type=semver,pattern={{major}}
type=sha
- uses: docker/setup-qemu-action@v2.2.0
- uses: docker/setup-buildx-action@v2.10.0
- uses: docker/setup-qemu-action@v3.0.0
- uses: docker/setup-buildx-action@v3.0.0

- id: docker_build
uses: docker/build-push-action@v4.1.1
uses: docker/build-push-action@v5.0.0
with:
context: .
push: true
Expand Down

0 comments on commit 546b1cb

Please sign in to comment.