Skip to content

Commit

Permalink
Merge pull request #638 from doitintl/fix/workflows
Browse files Browse the repository at this point in the history
Fix workflows
  • Loading branch information
migueldelucasdoit authored Oct 1, 2024
2 parents 84d2b10 + 7b67975 commit 7b47b24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
version: 2
updates:

- package-ecosystem: "gomod"
directory: "/"
schedule:
Expand All @@ -9,7 +8,7 @@ updates:
commit-message:
prefix: "dep: Go "
reviewers:
- "stepanstipl"
- "migueldelucasdoit"
- "dark0dave"

- package-ecosystem: "docker"
Expand All @@ -20,5 +19,5 @@ updates:
commit-message:
prefix: "dep: Docker "
reviewers:
- "stepanstipl"
- "migueldelucasdoit"
- "dark0dave"
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Archive release artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: release-artifacts-${{ matrix.os }}-${{ matrix.arch }}
path: release-artifacts
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
with:
fetch-depth: 0
set-safe-directory: true
- uses: actions/download-artifact@v1
- uses: actions/download-artifact@v4
with:
name: release-artifacts-linux-amd64
path: release-artifacts
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
args: --verbose --latest
env:
OUTPUT: changelog.md
- uses: actions/download-artifact@v1
- uses: actions/download-artifact@v4
with:
name: release-artifacts-linux-amd64
path: release-artifacts
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
arch: arm64
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v1
- uses: actions/download-artifact@v4
with:
name: release-artifacts-${{ matrix.os }}-${{ matrix.arch }}
path: release-artifacts
Expand Down

0 comments on commit 7b47b24

Please sign in to comment.