Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.

Commit 14b606b

Browse files
Update Github Actions Versions
1 parent 189afa0 commit 14b606b

4 files changed

Lines changed: 32 additions & 32 deletions

File tree

.github/workflows/action_build_push.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@ jobs:
2323
NOTES_VERSION: v1.7.0
2424
steps:
2525
- name: Checkout Dockerfiles and Context
26-
uses: actions/checkout@v3.2.0
26+
uses: actions/checkout@v4.1.1
2727

2828
- name: Checkout Etesync Web Client
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
repository: etesync/etesync-web.git
3232
path: etesync-web
3333
ref: ${{ env.CLIENT_VERSION }}
3434

3535
- name: Checkout Etesync Notes
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737
with:
3838
repository: etesync/etesync-notes.git
3939
path: etesync-notes
4040
ref: ${{ env.NOTES_VERSION }}
4141

42-
- uses: actions/setup-node@v3
42+
- uses: actions/setup-node@v4
4343
with:
4444
node-version: '17'
4545
cache: 'yarn'
@@ -62,7 +62,7 @@ jobs:
6262
echo ::set-output name=tag::${TAG}
6363
6464
- id: docker_metadata
65-
uses: docker/metadata-action@v4.1.1
65+
uses: docker/metadata-action@v5.4.0
6666
with:
6767
labels: |
6868
maintainer=victor-rds
@@ -76,22 +76,22 @@ jobs:
7676
7777
- name: Set up QEMU
7878
if: contains(github.event.inputs.platforms, 'linux/arm')
79-
uses: docker/setup-qemu-action@v2.1.0
79+
uses: docker/setup-qemu-action@v3.0.0
8080

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

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

9292
- name: Docker Build and Push
9393
id: docker_build_push
94-
uses: docker/build-push-action@v3.2.0
94+
uses: docker/build-push-action@v5.1.0
9595
with:
9696
builder: ${{ steps.buildx.outputs.name }}
9797
platforms: ${{ github.event.inputs.platforms }}

.github/workflows/call_build_push.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@ jobs:
3737
NOTES_VERSION: ${{ inputs.notes_version }}
3838
steps:
3939
- name: Checkout Dockerfiles and Context
40-
uses: actions/checkout@v3.2.0
40+
uses: actions/checkout@v4.1.1
4141

4242
- name: Checkout Etesync Web Client
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444
with:
4545
repository: etesync/etesync-web.git
4646
path: etesync-web
4747
ref: ${{ env.CLIENT_VERSION }}
4848

4949
- name: Checkout Etesync Notes
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151
with:
5252
repository: etesync/etesync-notes.git
5353
path: etesync-notes
5454
ref: ${{ env.NOTES_VERSION }}
5555

56-
- uses: actions/setup-node@v3
56+
- uses: actions/setup-node@v4
5757
with:
5858
node-version: 'lts/*'
5959
cache: 'yarn'
@@ -75,7 +75,7 @@ jobs:
7575
echo ::set-output name=tag::${TAG}
7676
7777
- id: docker_metadata_debian
78-
uses: docker/metadata-action@v4.1.1
78+
uses: docker/metadata-action@v5.4.0
7979
with:
8080
labels: |
8181
maintainer=victor-rds
@@ -88,7 +88,7 @@ jobs:
8888
type=raw,value=${{ steps.gen-tag.outputs.tag }}
8989
9090
- id: docker_metadata_alpine
91-
uses: docker/metadata-action@v4.1.1
91+
uses: docker/metadata-action@v5.4.0
9292
with:
9393
labels: |
9494
maintainer=victor-rds
@@ -101,20 +101,20 @@ jobs:
101101
102102
- name: Set up QEMU
103103
if: contains(inputs.platforms, 'linux/arm')
104-
uses: docker/setup-qemu-action@v2.1.0
104+
uses: docker/setup-qemu-action@v3.0.0
105105

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

110110
- name: Login to DockerHub
111111
if: inputs.pushit
112-
uses: docker/login-action@v2.1.0
112+
uses: docker/login-action@v3.0.0
113113
with:
114114
username: ${{ secrets.dckr_username }}
115115
password: ${{ secrets.dckr_token }}
116116

117-
- uses: docker/build-push-action@v3.2.0
117+
- uses: docker/build-push-action@v5.1.0
118118
if: always()
119119
with:
120120
builder: ${{ steps.buildx.outputs.name }}
@@ -128,7 +128,7 @@ jobs:
128128
labels: ${{ steps.docker_metadata_debian.outputs.labels }}
129129
push: ${{ inputs.pushit }}
130130

131-
- uses: docker/build-push-action@v3.2.0
131+
- uses: docker/build-push-action@v5.1.0
132132
if: always()
133133
with:
134134
builder: ${{ steps.buildx.outputs.name }}

.github/workflows/master_build_push.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout Dockerfiles and Context
21-
uses: actions/checkout@v3.2.0
21+
uses: actions/checkout@v4.1.1
2222

2323
- id: docker_metadata
24-
uses: docker/metadata-action@v4.1.1
24+
uses: docker/metadata-action@v5.4.0
2525
with:
2626
labels: |
2727
maintainer=victor-rds
@@ -35,22 +35,22 @@ jobs:
3535
3636
- name: Set up QEMU
3737
if: contains(github.event.inputs.platforms, 'linux/arm')
38-
uses: docker/setup-qemu-action@v2.1.0
38+
uses: docker/setup-qemu-action@v3.0.0
3939

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

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

5151
- name: Docker Build and Push
5252
id: docker_build_push
53-
uses: docker/build-push-action@v3.2.0
53+
uses: docker/build-push-action@v5.1.0
5454
with:
5555
builder: ${{ steps.buildx.outputs.name }}
5656
platforms: ${{ github.event.inputs.platforms }}

.github/workflows/stable_build_push.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
NOTES_VERSION: v1.7.0
2424
steps:
2525
- name: Checkout Dockerfiles and Context
26-
uses: actions/checkout@v3.2.0
26+
uses: actions/checkout@v4.1.1
2727

2828
- id: gen-tag
2929
shell: bash
@@ -32,7 +32,7 @@ jobs:
3232
echo ::set-output name=tag::${TAG}
3333
3434
- id: docker_metadata
35-
uses: docker/metadata-action@v4.1.1
35+
uses: docker/metadata-action@v5.4.0
3636
with:
3737
labels: |
3838
maintainer=victor-rds
@@ -46,22 +46,22 @@ jobs:
4646
4747
- name: Set up QEMU
4848
if: contains(github.event.inputs.platforms, 'linux/arm')
49-
uses: docker/setup-qemu-action@v2.1.0
49+
uses: docker/setup-qemu-action@v3.0.0
5050

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

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

6262
- name: Docker Build and Push
6363
id: docker_build_push
64-
uses: docker/build-push-action@v3.2.0
64+
uses: docker/build-push-action@v5.1.0
6565
with:
6666
builder: ${{ steps.buildx.outputs.name }}
6767
platforms: ${{ github.event.inputs.platforms }}

0 commit comments

Comments
 (0)