Signed-off-by: Mark Cave-Ayland mark.cave-ayland@ilande.co.uk --- .github/workflows/build-openbios-builder.yml | 8 ++++---- .github/workflows/main.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/.github/workflows/build-openbios-builder.yml b/.github/workflows/build-openbios-builder.yml index b31af8a..9715e50 100644 --- a/.github/workflows/build-openbios-builder.yml +++ b/.github/workflows/build-openbios-builder.yml @@ -17,10 +17,10 @@ jobs:
steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4
- name: Log in to the Container registry - uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -28,12 +28,12 @@ jobs:
- name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image - uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc + uses: docker/build-push-action@v5 with: context: . file: docker/Dockerfile.builder diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 41ec7ab..626fc0a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: image: ghcr.io/openbios/openbios-builder:master steps: - name: Checkout OpenBIOS - uses: actions/checkout@v2 + uses: actions/checkout@v4
- name: Backup Makefile.target run: cp Makefile.target Makefile.target.orig @@ -44,7 +44,7 @@ jobs: run: "mkdir -p release && mv obj-* release"
- name: Store artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: openbios-multiarch-latest path: | @@ -84,7 +84,7 @@ jobs: release/obj-sparc64/QEMU,VGA.bin
- name: Prepare pre-release from artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: openbios-multiarch-latest path: archive diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 908837f..1fc587c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: image: ghcr.io/openbios/openbios-builder:master steps: - name: Checkout OpenBIOS - uses: actions/checkout@v2 + uses: actions/checkout@v4
- name: Backup Makefile.target run: cp Makefile.target Makefile.target.orig @@ -44,7 +44,7 @@ jobs: run: "mkdir -p release && mv obj-* release"
- name: Store artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: "openbios-multiarch-${{ github.ref_name }}" path: | @@ -84,7 +84,7 @@ jobs: release/obj-sparc64/QEMU,VGA.bin
- name: Prepare release from artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: "openbios-multiarch-${{ github.ref_name }}" path: archive