Skip to content

Commit

Permalink
Merge pull request #247 from uswitch/airship-4267/update-actions-vers…
Browse files Browse the repository at this point in the history
…ions

airship-4267: update actions versions
  • Loading branch information
mmcgarr authored Jan 21, 2025
2 parents 2c51cbf + 1c8837e commit b87924f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
ruby-version: 3.2.2
- run: rake version
- run: rake build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: pkg
path: pkg/
Expand All @@ -47,18 +47,18 @@ jobs:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: pkg
path: pkg/
- id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: quay.io/uswitch/terrafying-components
tags: type=sha,prefix=,format=long,
- uses: docker/build-push-action@v4
- uses: docker/build-push-action@v6
with:
context: .
labels: ${{ steps.meta.outputs.labels }}
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: ${{ steps.meta.outputs.tags }}
10 changes: 5 additions & 5 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
ruby-version: 3.2.2
- run: rake version
- run: rake build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: pkg
path: |
Expand All @@ -41,7 +41,7 @@ jobs:
with:
bundler-cache: true
ruby-version: 3.2.2
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: pkg
path: ./
Expand All @@ -60,16 +60,16 @@ jobs:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: pkg
path: ./
- id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: quay.io/uswitch/terrafying-components
tags: type=semver,pattern={{version}}
- uses: docker/build-push-action@v4
- uses: docker/build-push-action@v6
with:
context: .
labels: ${{ steps.meta.outputs.labels }}
Expand Down

0 comments on commit b87924f

Please sign in to comment.