From f3d2fef8ec1c19af7e7bb28944921811fbd0c243 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Thu, 12 Sep 2024 23:50:20 -0700 Subject: [PATCH] workflow: bump actions/* to v4 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3f9993b1..7c509c3d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: name: Build pkmn-chest steps: - name: Checkout repo - uses: actions/checkout@v1 + uses: actions/checkout@v4 with: submodules: recursive - name: Install tools @@ -45,7 +45,7 @@ jobs: mkdir -p ~/artifacts cp pkmn-chest.* ~/artifacts - name: Publish build to GH Actions - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: path: ~/artifacts/* name: build @@ -62,7 +62,7 @@ jobs: sudo apt-get update sudo apt-get install qrencode -y - name: Download artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build path: build