Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish-aur.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
VERSION: v5.2.0 # Set this to the tag name of the release
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download checksum file
run: |
Expand Down Expand Up @@ -50,13 +50,13 @@ jobs:
EOF

- name: Store PKGBUILD as an artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: PKGBUILD
path: ./aur/${{ env.PACKAGE_NAME }}/PKGBUILD

- name: Publish AUR package
uses: KSXGitHub/github-actions-deploy-aur@v2.2.5
uses: KSXGitHub/github-actions-deploy-aur@v4.1.3
with:
pkgname: ${{ env.PACKAGE_NAME }}
pkgver: ${{ env.PKGVER }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
outputs:
sha_linux: ${{ steps.shasum.outputs.sha_linux }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Use Go 1.22.x
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.22'
- name: Test
Expand All @@ -44,7 +44,7 @@ jobs:
env:
GOOS: ${{ matrix.goos }}
- name: VirusTotal Scan
uses: crazy-max/ghaction-virustotal@v3
uses: crazy-max/ghaction-virustotal@v5
with:
vt_api_key: ${{ secrets.VT_API_KEY }}
update_release_body: true
Expand Down Expand Up @@ -125,12 +125,12 @@ jobs:

EOF
- name: Store PKGBUILD as an artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: PKGBUILD
path: ./aur/${{ env.PACKAGE_NAME }}/PKGBUILD
- name: Publish AUR package
uses: KSXGitHub/github-actions-deploy-aur@v2.2.5
uses: KSXGitHub/github-actions-deploy-aur@v4.1.3
with:
pkgname: ${{ env.PACKAGE_NAME }}
pkgbuild: ./aur/${{ env.PACKAGE_NAME }}/PKGBUILD
Expand Down
Loading