Skip to content

Commit

Permalink
Update Github Actions Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 22, 2023
1 parent 189afa0 commit 48c4efd
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 30 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/action_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ jobs:
NOTES_VERSION: v1.7.0
steps:
- name: Checkout Dockerfiles and Context
uses: actions/checkout@v3.2.0
uses: actions/checkout@v4.1.0

- name: Checkout Etesync Web Client
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: etesync/etesync-web.git
path: etesync-web
ref: ${{ env.CLIENT_VERSION }}

- name: Checkout Etesync Notes
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: etesync/etesync-notes.git
path: etesync-notes
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
echo ::set-output name=tag::${TAG}
- id: docker_metadata
uses: docker/metadata-action@v4.1.1
uses: docker/metadata-action@v5.0.0
with:
labels: |
maintainer=victor-rds
Expand All @@ -76,22 +76,22 @@ jobs:
- name: Set up QEMU
if: contains(github.event.inputs.platforms, 'linux/arm')
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2.2.1
uses: docker/setup-buildx-action@v3.0.0

- name: Login to DockerHub
if: contains(github.event.inputs.pushit, 'true')
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Docker Build and Push
id: docker_build_push
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.0.0
with:
builder: ${{ steps.buildx.outputs.name }}
platforms: ${{ github.event.inputs.platforms }}
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/call_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ jobs:
NOTES_VERSION: ${{ inputs.notes_version }}
steps:
- name: Checkout Dockerfiles and Context
uses: actions/checkout@v3.2.0
uses: actions/checkout@v4.1.0

- name: Checkout Etesync Web Client
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: etesync/etesync-web.git
path: etesync-web
ref: ${{ env.CLIENT_VERSION }}

- name: Checkout Etesync Notes
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: etesync/etesync-notes.git
path: etesync-notes
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
echo ::set-output name=tag::${TAG}
- id: docker_metadata_debian
uses: docker/metadata-action@v4.1.1
uses: docker/metadata-action@v5.0.0
with:
labels: |
maintainer=victor-rds
Expand All @@ -88,7 +88,7 @@ jobs:
type=raw,value=${{ steps.gen-tag.outputs.tag }}
- id: docker_metadata_alpine
uses: docker/metadata-action@v4.1.1
uses: docker/metadata-action@v5.0.0
with:
labels: |
maintainer=victor-rds
Expand All @@ -101,20 +101,20 @@ jobs:
- name: Set up QEMU
if: contains(inputs.platforms, 'linux/arm')
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2.2.1
uses: docker/setup-buildx-action@v3.0.0

- name: Login to DockerHub
if: inputs.pushit
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.dckr_username }}
password: ${{ secrets.dckr_token }}

- uses: docker/build-push-action@v3.2.0
- uses: docker/build-push-action@v5.0.0
if: always()
with:
builder: ${{ steps.buildx.outputs.name }}
Expand All @@ -128,7 +128,7 @@ jobs:
labels: ${{ steps.docker_metadata_debian.outputs.labels }}
push: ${{ inputs.pushit }}

- uses: docker/build-push-action@v3.2.0
- uses: docker/build-push-action@v5.0.0
if: always()
with:
builder: ${{ steps.buildx.outputs.name }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/master_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Dockerfiles and Context
uses: actions/checkout@v3.2.0
uses: actions/checkout@v4.1.0

- id: docker_metadata
uses: docker/metadata-action@v4.1.1
uses: docker/metadata-action@v5.0.0
with:
labels: |
maintainer=victor-rds
Expand All @@ -35,22 +35,22 @@ jobs:
- name: Set up QEMU
if: contains(github.event.inputs.platforms, 'linux/arm')
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2.2.1
uses: docker/setup-buildx-action@v3.0.0

- name: Login to DockerHub
if: contains(github.event.inputs.pushit, 'true')
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Docker Build and Push
id: docker_build_push
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.0.0
with:
builder: ${{ steps.buildx.outputs.name }}
platforms: ${{ github.event.inputs.platforms }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/stable_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
NOTES_VERSION: v1.7.0
steps:
- name: Checkout Dockerfiles and Context
uses: actions/checkout@v3.2.0
uses: actions/checkout@v4.1.0

- id: gen-tag
shell: bash
Expand All @@ -32,7 +32,7 @@ jobs:
echo ::set-output name=tag::${TAG}
- id: docker_metadata
uses: docker/metadata-action@v4.1.1
uses: docker/metadata-action@v5.0.0
with:
labels: |
maintainer=victor-rds
Expand All @@ -46,22 +46,22 @@ jobs:
- name: Set up QEMU
if: contains(github.event.inputs.platforms, 'linux/arm')
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2.2.1
uses: docker/setup-buildx-action@v3.0.0

- name: Login to DockerHub
if: contains(github.event.inputs.pushit, 'true')
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Docker Build and Push
id: docker_build_push
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.0.0
with:
builder: ${{ steps.buildx.outputs.name }}
platforms: ${{ github.event.inputs.platforms }}
Expand Down

0 comments on commit 48c4efd

Please sign in to comment.