Skip to content

Commit

Permalink
Bump all actions that used node 16
Browse files Browse the repository at this point in the history
This addresses issue#6
  • Loading branch information
frison committed Oct 29, 2024
1 parent 15d6398 commit 035a75d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/actions/build-test-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,20 @@ runs:
# build rails for arm64 on an amd64 machine timed out after 6 hours -- so I'm not convinced I believe that claim.
-
name: 🛠 Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: ${{ inputs.platforms }}

-
name: 🛠 Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
platforms: ${{ inputs.platforms }}

# https://github.com/docker/build-push-action
-
name: 🔨 + 🔄 - ${{ inputs.display-as }} (${{ inputs.platforms }})
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: ${{ inputs.docker-context }}
file: ${{ inputs.dockerfile }}
Expand Down Expand Up @@ -141,7 +141,7 @@ runs:
-
name: 🚀 ${{ inputs.display-as }} (${{ inputs.platforms }})
if: ${{ inputs.publish == 'true' }}
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: ${{ inputs.docker-context }}
file: ${{ inputs.dockerfile }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
-
name: ⬆️ Dockerfile.composite
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: composite-dockerfile
path: Dockerfile.composite
Expand All @@ -58,7 +58,7 @@ jobs:

-
name: ⬇️ Dockerfile.composite
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: composite-dockerfile

Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

-
name: ⬇️ Dockerfile.composite
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: composite-dockerfile

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-base-change.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
-
name: 📂 - Base Changed?
id: changes
uses: dorny/paths-filter@v2
uses: dorny/paths-filter@v3
with:
filters: |
base:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
-
name: 📂 - Changed Languages?
id: changes
uses: dorny/paths-filter@v2
uses: dorny/paths-filter@v3
with:
filters: lang-filters.yml

Expand Down

0 comments on commit 035a75d

Please sign in to comment.