From 035a75d74f64214a754989f1e3f4d5377f306e73 Mon Sep 17 00:00:00 2001 From: Tim Frison Date: Mon, 28 Oct 2024 19:11:18 -0600 Subject: [PATCH] Bump all actions that used node 16 This addresses issue#6 --- .github/actions/build-test-publish/action.yml | 8 ++++---- .github/workflows/build-test-publish.yml | 6 +++--- .github/workflows/on-base-change.yml | 2 +- .github/workflows/on-push.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/actions/build-test-publish/action.yml b/.github/actions/build-test-publish/action.yml index fe40808..408ad4e 100644 --- a/.github/actions/build-test-publish/action.yml +++ b/.github/actions/build-test-publish/action.yml @@ -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 }} @@ -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 }} diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index 4c25fc1..500ff14 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -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 @@ -58,7 +58,7 @@ jobs: - name: ⬇️ Dockerfile.composite - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: composite-dockerfile @@ -92,7 +92,7 @@ jobs: - name: ⬇️ Dockerfile.composite - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: composite-dockerfile diff --git a/.github/workflows/on-base-change.yml b/.github/workflows/on-base-change.yml index aa94c8b..abd38c3 100644 --- a/.github/workflows/on-base-change.yml +++ b/.github/workflows/on-base-change.yml @@ -32,7 +32,7 @@ jobs: - name: 📂 - Base Changed? id: changes - uses: dorny/paths-filter@v2 + uses: dorny/paths-filter@v3 with: filters: | base: diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml index 32b49fc..c36eeed 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/on-push.yml @@ -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