Skip to content

Commit 279378d

Browse files
committed
feat: Update uses
1 parent f5ff04b commit 279378d

8 files changed

+37
-37
lines changed

.github/workflows/docker-multistage-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,23 +73,23 @@ jobs:
7373
# Setup repository
7474
# ------------------------------------------------------------
7575
- name: "[SETUP] Checkout repository (current)"
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v6
7777
with:
7878
fetch-depth: 0
7979
if: ${{ !inputs.has_refs }}
8080

8181
- name: "[SETUP] Checkout repository (ref: ${{ matrix.REFS }})"
82-
uses: actions/checkout@v4
82+
uses: actions/checkout@v6
8383
with:
8484
fetch-depth: 0
8585
ref: ${{ matrix.REFS }}
8686
if: ${{ inputs.has_refs }}
8787

8888
- name: "[SETUP] Install QEMU environment"
89-
uses: docker/setup-qemu-action@v3
89+
uses: docker/setup-qemu-action@v4
9090
id: qemu
9191
with:
92-
image: tonistiigi/binfmt:qemu-v8.1.5
92+
#image: tonistiigi/binfmt:qemu-v8.1.5
9393
platforms: linux/amd64,linux/arm64
9494

9595
- name: "[SETUP] Set artifact names"
@@ -170,7 +170,7 @@ jobs:
170170
make tag VERSION="${{ matrix.VERSION }}" STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} TAG=${{ steps.tag.outputs.docker-tag }}
171171
172172
- name: Docker login
173-
uses: docker/login-action@v3
173+
uses: docker/login-action@v4
174174
with:
175175
username: ${{ secrets.dockerhub_username }}
176176
password: ${{ secrets.dockerhub_password }}

.github/workflows/docker-multistage-push-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,22 +55,22 @@ jobs:
5555
# Setup repository
5656
# ------------------------------------------------------------
5757
- name: "[SETUP] Checkout repository (current)"
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v6
5959
with:
6060
fetch-depth: 0
6161
if: ${{ !inputs.has_refs }}
6262

6363
- name: "[SETUP] Checkout repository (ref: ${{ matrix.REFS }})"
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v6
6565
with:
6666
fetch-depth: 0
6767
ref: ${{ matrix.REFS }}
6868
if: ${{ inputs.has_refs }}
6969

7070
- name: "[SETUP] Setup QEMU environment"
71-
uses: docker/setup-qemu-action@v3
71+
uses: docker/setup-qemu-action@v4
7272
with:
73-
image: tonistiigi/binfmt:qemu-v8.1.5
73+
#image: tonistiigi/binfmt:qemu-v8.1.5
7474
platforms: linux/amd64,linux/arm64
7575

7676
- name: "[SETUP] Determine Docker tag"
@@ -124,7 +124,7 @@ jobs:
124124
# Login
125125
# ------------------------------------------------------------
126126
- name: Login
127-
uses: docker/login-action@v3
127+
uses: docker/login-action@v4
128128
with:
129129
username: ${{ secrets.DOCKERHUB_USERNAME }}
130130
password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/docker-multistage-push-manifest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,22 @@ jobs:
5757
# Setup repository
5858
# ------------------------------------------------------------
5959
- name: "[SETUP] Checkout repository (current)"
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v6
6161
with:
6262
fetch-depth: 0
6363
if: ${{ !inputs.has_refs }}
6464

6565
- name: "[SETUP] Checkout repository (ref: ${{ matrix.REFS }})"
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v6
6767
with:
6868
fetch-depth: 0
6969
ref: ${{ matrix.REFS }}
7070
if: ${{ inputs.has_refs }}
7171

7272
- name: "[SETUP] Setup QEMU environment"
73-
uses: docker/setup-qemu-action@v3
73+
uses: docker/setup-qemu-action@v4
7474
with:
75-
image: tonistiigi/binfmt:qemu-v8.1.5
75+
#image: tonistiigi/binfmt:qemu-v8.1.5
7676
platforms: linux/amd64,linux/arm64
7777

7878
- name: "[SETUP] Determine Docker tag"
@@ -96,7 +96,7 @@ jobs:
9696
# Login
9797
# ------------------------------------------------------------
9898
- name: "Login"
99-
uses: docker/login-action@v3
99+
uses: docker/login-action@v4
100100
with:
101101
username: ${{ secrets.DOCKERHUB_USERNAME }}
102102
password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/docker-multistage-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,22 @@ jobs:
4141
# Setup repository
4242
# ------------------------------------------------------------
4343
- name: "[SETUP] Checkout repository (current)"
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v6
4545
with:
4646
fetch-depth: 0
4747
if: ${{ !inputs.has_refs }}
4848

4949
- name: "[SETUP] Checkout repository (ref: ${{ matrix.REFS }})"
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v6
5151
with:
5252
fetch-depth: 0
5353
ref: ${{ matrix.REFS }}
5454
if: ${{ inputs.has_refs }}
5555

5656
- name: "[SETUP] Setup QEMU environment"
57-
uses: docker/setup-qemu-action@v3
57+
uses: docker/setup-qemu-action@v4
5858
with:
59-
image: tonistiigi/binfmt:qemu-v8.1.5
59+
#image: tonistiigi/binfmt:qemu-v8.1.5
6060
platforms: linux/amd64,linux/arm64
6161

6262
- name: "[SETUP] Set artifact names"

.github/workflows/docker-name-version-arch.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -126,22 +126,22 @@ jobs:
126126
# Setup repository
127127
# ------------------------------------------------------------
128128
- name: "[SETUP] Checkout repository (current)"
129-
uses: actions/checkout@v4
129+
uses: actions/checkout@v6
130130
with:
131131
fetch-depth: 0
132132
if: needs.configure.outputs.has_refs == 0
133133

134134
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
135-
uses: actions/checkout@v4
135+
uses: actions/checkout@v6
136136
with:
137137
fetch-depth: 0
138138
ref: ${{ matrix.refs }}
139139
if: needs.configure.outputs.has_refs != 0
140140

141141
- name: "[SETUP] Setup QEMU environment"
142-
uses: docker/setup-qemu-action@v3
142+
uses: docker/setup-qemu-action@v4
143143
with:
144-
image: tonistiigi/binfmt:qemu-v8.1.5
144+
#image: tonistiigi/binfmt:qemu-v8.1.5
145145
platforms: linux/amd64,linux/arm64
146146

147147
- name: "[SETUP] Determine Docker tag"
@@ -185,7 +185,7 @@ jobs:
185185
# Deploy
186186
# ------------------------------------------------------------
187187
- name: Docker login
188-
uses: docker/login-action@v3
188+
uses: docker/login-action@v4
189189
with:
190190
username: ${{ secrets.dockerhub_username }}
191191
password: ${{ secrets.dockerhub_password }}
@@ -215,13 +215,13 @@ jobs:
215215
# Setup repository
216216
# ------------------------------------------------------------
217217
- name: "[SETUP] Checkout repository (current)"
218-
uses: actions/checkout@v4
218+
uses: actions/checkout@v6
219219
with:
220220
fetch-depth: 0
221221
if: needs.configure.outputs.has_refs == 0
222222

223223
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
224-
uses: actions/checkout@v4
224+
uses: actions/checkout@v6
225225
with:
226226
fetch-depth: 0
227227
ref: ${{ matrix.refs }}
@@ -248,7 +248,7 @@ jobs:
248248
# Deploy
249249
# ------------------------------------------------------------
250250
- name: "[DEPLOY] Login"
251-
uses: docker/login-action@v3
251+
uses: docker/login-action@v4
252252
with:
253253
username: ${{ secrets.DOCKERHUB_USERNAME }}
254254
password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/docker-name-version-flavour-arch.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -126,22 +126,22 @@ jobs:
126126
# Setup repository
127127
# ------------------------------------------------------------
128128
- name: "[SETUP] Checkout repository (current)"
129-
uses: actions/checkout@v4
129+
uses: actions/checkout@v6
130130
with:
131131
fetch-depth: 0
132132
if: needs.configure.outputs.has_refs == 0
133133

134134
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
135-
uses: actions/checkout@v4
135+
uses: actions/checkout@v6
136136
with:
137137
fetch-depth: 0
138138
ref: ${{ matrix.refs }}
139139
if: needs.configure.outputs.has_refs != 0
140140

141141
- name: "[SETUP] Setup QEMU environment"
142-
uses: docker/setup-qemu-action@v3
142+
uses: docker/setup-qemu-action@v4
143143
with:
144-
image: tonistiigi/binfmt:qemu-v8.1.5
144+
#image: tonistiigi/binfmt:qemu-v8.1.5
145145
platforms: linux/amd64,linux/arm64
146146

147147
- name: "[SETUP] Determine Docker tag"
@@ -185,7 +185,7 @@ jobs:
185185
# Deploy
186186
# ------------------------------------------------------------
187187
- name: Docker login
188-
uses: docker/login-action@v3
188+
uses: docker/login-action@v4
189189
with:
190190
username: ${{ secrets.dockerhub_username }}
191191
password: ${{ secrets.dockerhub_password }}
@@ -215,13 +215,13 @@ jobs:
215215
# Setup repository
216216
# ------------------------------------------------------------
217217
- name: "[SETUP] Checkout repository (current)"
218-
uses: actions/checkout@v4
218+
uses: actions/checkout@v6
219219
with:
220220
fetch-depth: 0
221221
if: needs.configure.outputs.has_refs == 0
222222

223223
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
224-
uses: actions/checkout@v4
224+
uses: actions/checkout@v6
225225
with:
226226
fetch-depth: 0
227227
ref: ${{ matrix.refs }}
@@ -248,7 +248,7 @@ jobs:
248248
# Deploy
249249
# ------------------------------------------------------------
250250
- name: "[DEPLOY] Login"
251-
uses: docker/login-action@v3
251+
uses: docker/login-action@v4
252252
with:
253253
username: ${{ secrets.DOCKERHUB_USERNAME }}
254254
password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/lint-generic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515

1616
- name: "[SETUP] Checkout repository"
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
# Drafts your next Release notes as Pull Requests are merged into "main"
14-
- uses: release-drafter/release-drafter@v6
14+
- uses: release-drafter/release-drafter@v7
1515
with:
1616
publish: true
1717
env:

0 commit comments

Comments
 (0)