Skip to content

Commit 250f949

Browse files
committed
Update third-party actions
1 parent 310e7aa commit 250f949

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/build-all.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -611,9 +611,9 @@ jobs:
611611
- win_x86_v8
612612
steps:
613613
- name: Checkout
614-
uses: actions/checkout@v4
614+
uses: actions/checkout@v6
615615
- name: Download artifacts
616-
uses: actions/download-artifact@v4
616+
uses: actions/download-artifact@v7
617617
with:
618618
path: nuget
619619
- name: Prepare header files
@@ -641,7 +641,7 @@ jobs:
641641
echo "::endgroup::"
642642
done
643643
- name: Upload artifact
644-
uses: actions/upload-artifact@v4
644+
uses: actions/upload-artifact@v6
645645
with:
646646
name: NuGet packages
647647
path: '*.nupkg'
@@ -665,9 +665,9 @@ jobs:
665665
- win_x64
666666
steps:
667667
- name: Checkout
668-
uses: actions/checkout@v4
668+
uses: actions/checkout@v6
669669
- name: Download artifacts
670-
uses: actions/download-artifact@v4
670+
uses: actions/download-artifact@v7
671671
- name: Create build script
672672
run: |
673673
cat >conda-build.sh <<END
@@ -702,7 +702,7 @@ jobs:
702702
- name: Build for win-arm64
703703
run: ./conda-build.sh win-arm64 pdfium-win-arm64
704704
- name: Upload artifact
705-
uses: actions/upload-artifact@v4
705+
uses: actions/upload-artifact@v6
706706
with:
707707
name: Conda packages
708708
path: conda/out/
@@ -769,7 +769,7 @@ jobs:
769769
attestations: write # to attest build provenance
770770
steps:
771771
- name: Download artifacts
772-
uses: actions/download-artifact@v4
772+
uses: actions/download-artifact@v7
773773
- name: Create tarballs
774774
run: |
775775
for DIR in pdfium-*; do

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
[ "${{inputs.is_debug}}" == "true" ] && ARTIFACT="$ARTIFACT-debug"
7979
echo "artifact=$ARTIFACT" >> $GITHUB_OUTPUT
8080
- name: Checkout this repo
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v6
8282
- name: Set environment variables
8383
run: steps/00-environment.sh
8484
shell: bash
@@ -116,7 +116,7 @@ jobs:
116116
run: steps/08-licenses.sh
117117
shell: bash
118118
- name: Upload artifact
119-
uses: actions/upload-artifact@v4
119+
uses: actions/upload-artifact@v6
120120
with:
121121
name: ${{ steps.init.outputs.artifact }}
122122
path: staging/

.github/workflows/mac-univ.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
run: |
2929
echo "artifact=$ARTIFACT_X64" | sed "s/x64/univ/g" >> $GITHUB_OUTPUT
3030
- name: Download ${{ inputs.artifact_x64 }}
31-
uses: actions/download-artifact@v4
31+
uses: actions/download-artifact@v7
3232
with:
3333
name: ${{ inputs.artifact_x64 }}
3434
path: ${{ inputs.artifact_x64 }}
3535
- name: Download ${{ inputs.artifact_arm64 }}
36-
uses: actions/download-artifact@v4
36+
uses: actions/download-artifact@v7
3737
with:
3838
name: ${{ inputs.artifact_arm64 }}
3939
path: ${{ inputs.artifact_arm64 }}
@@ -50,7 +50,7 @@ jobs:
5050
OUTPUT_DIR: ${{ steps.init.outputs.artifact }}
5151

5252
- name: Upload artifact
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v6
5454
with:
5555
name: ${{ steps.init.outputs.artifact }}
5656
path: ${{ steps.init.outputs.artifact }}

.github/workflows/patch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
gclient sync -r "origin/${PDFium_BRANCH}" --no-history --shallow
2525
2626
- name: Upload PDFium artifact
27-
uses: actions/upload-artifact@v4
27+
uses: actions/upload-artifact@v6
2828
with:
2929
name: pdfium
3030
path: |
@@ -62,10 +62,10 @@ jobs:
6262
cpu: wasm
6363
steps:
6464
- name: Checkout
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v6
6666

6767
- name: Download PDFium artifact
68-
uses: actions/download-artifact@v4
68+
uses: actions/download-artifact@v7
6969
with:
7070
name: pdfium
7171
path: pdfium

0 commit comments

Comments
 (0)