Skip to content

Commit 7b47b24

Browse files
Merge pull request #638 from doitintl/fix/workflows
Fix workflows
2 parents 84d2b10 + 7b67975 commit 7b47b24

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
version: 2
22
updates:
3-
43
- package-ecosystem: "gomod"
54
directory: "/"
65
schedule:
@@ -9,7 +8,7 @@ updates:
98
commit-message:
109
prefix: "dep: Go "
1110
reviewers:
12-
- "stepanstipl"
11+
- "migueldelucasdoit"
1312
- "dark0dave"
1413

1514
- package-ecosystem: "docker"
@@ -20,5 +19,5 @@ updates:
2019
commit-message:
2120
prefix: "dep: Docker "
2221
reviewers:
23-
- "stepanstipl"
22+
- "migueldelucasdoit"
2423
- "dark0dave"

.github/workflows/main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
env:
6666
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6767
- name: Archive release artifacts
68-
uses: actions/upload-artifact@v1
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: release-artifacts-${{ matrix.os }}-${{ matrix.arch }}
7171
path: release-artifacts
@@ -119,7 +119,7 @@ jobs:
119119
with:
120120
fetch-depth: 0
121121
set-safe-directory: true
122-
- uses: actions/download-artifact@v1
122+
- uses: actions/download-artifact@v4
123123
with:
124124
name: release-artifacts-linux-amd64
125125
path: release-artifacts
@@ -157,7 +157,7 @@ jobs:
157157
args: --verbose --latest
158158
env:
159159
OUTPUT: changelog.md
160-
- uses: actions/download-artifact@v1
160+
- uses: actions/download-artifact@v4
161161
with:
162162
name: release-artifacts-linux-amd64
163163
path: release-artifacts
@@ -225,7 +225,7 @@ jobs:
225225
arch: arm64
226226
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
227227
steps:
228-
- uses: actions/download-artifact@v1
228+
- uses: actions/download-artifact@v4
229229
with:
230230
name: release-artifacts-${{ matrix.os }}-${{ matrix.arch }}
231231
path: release-artifacts

0 commit comments

Comments
 (0)