Skip to content

Commit ed80dfe

Browse files
committed
ci: updated the actions versions
1 parent 2fa7e13 commit ed80dfe

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/build-listing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Download listing artifact
46-
uses: actions/download-artifact@v4
46+
uses: actions/download-artifact@v5
4747
with:
4848
name: listing-site
4949
path: Website
@@ -53,14 +53,14 @@ jobs:
5353
enablement: true
5454
token: ${{ secrets.REPO_TOKEN }}
5555
- name: Upload the VPM Listing Website to GitHub Pages artifacts
56-
uses: actions/upload-pages-artifact@v3
56+
uses: actions/upload-pages-artifact@v4
5757
with:
5858
path: Website
5959
- id: deployment
6060
name: Deploy the uploaded VPM Listing Website to GitHub Pages
6161
uses: actions/deploy-pages@v4
6262
- name: Trigger the action of the curation repository
63-
uses: peter-evans/repository-dispatch@v3
63+
uses: peter-evans/repository-dispatch@v4
6464
with:
6565
event-type: build-listing
6666
repository: kurone-kito/vpm

.github/workflows/build-website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout Local Repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
- name: Checkout Automation Repository without removing prior checkouts
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
clean: false
3333
path: ${{ inputs.pathToCi }}

.github/workflows/package-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout Local Repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Zip the Package
2525
run: zip -r -9 "${{ github.workspace }}/${{ inputs.zipFile }}" .
2626
working-directory: "${{ inputs.packagePath }}"

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout Local Repository
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
- id: version
3939
name: Get the Package version based on the package.json file
4040
# cspell: disable-next-line
@@ -88,13 +88,13 @@ jobs:
8888
passphrase: ${{ secrets.GPG_PASSPHRASE }}
8989
trust_level: 5
9090
- name: Checkout Local Repository
91-
uses: actions/checkout@v4
91+
uses: actions/checkout@v5
9292
- name: Download package archive
93-
uses: actions/download-artifact@v4
93+
uses: actions/download-artifact@v5
9494
with:
9595
name: ${{ needs.prepare.outputs.zipFile }}
9696
- name: Download UnityPackage
97-
uses: actions/download-artifact@v4
97+
uses: actions/download-artifact@v5
9898
with:
9999
name: ${{ needs.prepare.outputs.unityPackage }}
100100
- name: copy the README and LICENSE files to the Package folder

0 commit comments

Comments
 (0)