Skip to content

Commit e116a5e

Browse files
authored
Merge pull request #1896 from BishopFox/fix/action/update-artifact-version
Update actions/upload-artifact to v4
2 parents 10e2453 + 770f937 commit e116a5e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/autorelease.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
mingw-w64 binutils-mingw-w64 g++-mingw-w64 gcc-multilib
2525
2626
- name: Check out code into the Go module directory
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Git Fetch Tags
3030
run: git fetch --prune --unshallow --tags -f
@@ -38,7 +38,7 @@ jobs:
3838
run: export PATH=/home/runner/go/bin/:$PATH && make linux
3939

4040
- name: Linux Artifacts
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: linux
4444
path: ./sliver-*
@@ -51,7 +51,7 @@ jobs:
5151
export PATH=/home/runner/go/bin/:$PATH && make windows
5252
5353
- name: Windows Artifacts
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: windows
5757
path: ./sliver-*
@@ -71,7 +71,7 @@ jobs:
7171
run: brew install mingw-w64
7272

7373
- name: Check out code into the Go module directory
74-
uses: actions/checkout@v3
74+
uses: actions/checkout@v4
7575

7676
- name: Git Fetch Tags
7777
run: git fetch --prune --unshallow --tags -f
@@ -90,7 +90,7 @@ jobs:
9090
run: make macos-arm64
9191

9292
- name: MacOS Artifacts
93-
uses: actions/upload-artifact@v3
93+
uses: actions/upload-artifact@v4
9494
with:
9595
name: macos
9696
path: ./sliver-*
@@ -105,7 +105,7 @@ jobs:
105105

106106
steps:
107107
- run: mkdir -p ./builds
108-
- uses: actions/download-artifact@v3
108+
- uses: actions/download-artifact@v4
109109
with:
110110
path: ./builds
111111

0 commit comments

Comments
 (0)