Skip to content

Commit

Permalink
Bump action versions.
Browse files Browse the repository at this point in the history
Bump actions/checkout to v4.
Bump docker/setup-qemu-action to v3.
Bump docker/setup-buildx-action to v3.
  • Loading branch information
woblerr committed Dec 29, 2024
1 parent 2ce2dd2 commit 1b1ef4e
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
latest_version: "2.54.1"
download_url: "https://github.com/pgbackrest/pgbackrest/archive/release"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Get repo tag
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
Expand All @@ -25,14 +25,16 @@ jobs:
echo ::set-output name=repo_tag::$(echo ${GITHUB_REF} | cut -d'/' -f3)
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
run: echo ${BUILDX_PLATFORMS}
env:
BUILDX_PLATFORMS: ${{ steps.buildx.outputs.platforms }}

- name: Build pgbackrest image
run: |
Expand Down Expand Up @@ -155,7 +157,7 @@ jobs:
env:
download_url: "https://github.com/arenadata/pgbackrest/archive"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Get repo tag
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
Expand All @@ -164,14 +166,16 @@ jobs:
echo ::set-output name=repo_tag::$(echo ${GITHUB_REF} | cut -d'/' -f3)
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
run: echo ${BUILDX_PLATFORMS}
env:
BUILDX_PLATFORMS: ${{ steps.buildx.outputs.platforms }}

- name: Build pgbackrest gpdb image
run: |
Expand Down

0 comments on commit 1b1ef4e

Please sign in to comment.