Skip to content

Commit f06ea8f

Browse files
authored
Merge pull request #758 from TeamPiped/actions-update
Bump upload and download artifact actions
2 parents 0fddadb + fdfc090 commit f06ea8f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
steps:
3838
- uses: actions/checkout@v4
39-
- uses: actions/download-artifact@v3
39+
- uses: actions/download-artifact@v4
4040
with:
4141
name: piped.jar
4242
- name: Create Version File

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
dockerfile: ./Dockerfile.graalvm-jvm.ci
2828
steps:
2929
- uses: actions/checkout@v4
30-
- uses: actions/download-artifact@v3
30+
- uses: actions/download-artifact@v4
3131
with:
3232
name: piped.jar
3333
- name: Create Version File

.github/workflows/docker-migrations-build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Run Build
2525
run: ./gradlew shadowJar
2626
- run: mv build/libs/piped-*-all.jar piped.jar
27-
- uses: actions/upload-artifact@v3
27+
- uses: actions/upload-artifact@v4
2828
with:
2929
name: piped-old.jar
3030
path: piped.jar
@@ -50,7 +50,7 @@ jobs:
5050
steps:
5151
- uses: actions/checkout@v4
5252
- run: echo "unknown" > VERSION
53-
- uses: actions/download-artifact@v3
53+
- uses: actions/download-artifact@v4
5454
with:
5555
name: piped-old.jar
5656
- name: Build Old Image Locally
@@ -63,7 +63,7 @@ jobs:
6363
- name: Start Docker-Compose services
6464
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep ${{ matrix.sleep }}
6565
- run: rm piped.jar
66-
- uses: actions/download-artifact@v3
66+
- uses: actions/download-artifact@v4
6767
with:
6868
name: piped.jar
6969
- name: Build New Image Locally

.github/workflows/fat-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Run Build
1919
run: ./gradlew shadowJar
2020
- run: mv build/libs/piped-*-all.jar piped.jar
21-
- uses: actions/upload-artifact@v3
21+
- uses: actions/upload-artifact@v4
2222
with:
2323
name: piped.jar
2424
path: piped.jar

0 commit comments

Comments
 (0)