Skip to content

Commit 5e5be04

Browse files
authored
Fix Actions
1 parent 6700bfd commit 5e5be04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/attachReleaseArtifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
attach-release-artifacts:
1111
# The type of runner that the job will run on
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313

1414
# Steps represent a sequence of tasks that will be executed as part of the job
1515
steps:

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
build:
2727
# The type of runner that the job will run on
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-22.04
2929
needs: [check-secret]
3030
if: needs.check-secret.outputs.has-password == 'true'
3131
# Steps represent a sequence of tasks that will be executed as part of the job
@@ -66,7 +66,7 @@ jobs:
6666
cp -v -R "${GITHUB_WORKSPACE}/GameData" "${RELEASE_DIR}"
6767
6868
- name: Upload artifacts
69-
uses: actions/upload-artifact@v1
69+
uses: actions/upload-artifact@v4
7070
with:
7171
name: RP-1
7272
path: ${{ steps.assemble-release.outputs.release-dir }}

0 commit comments

Comments
 (0)