Skip to content

Commit 1869cc2

Browse files
committed
Fix CI/CD
1 parent 67c899d commit 1869cc2

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.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
@@ -16,7 +16,7 @@ on:
1616
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1717
jobs:
1818
check-secret:
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-22.04
2020
outputs:
2121
has-password: ${{ steps.has-password.outputs.defined }}
2222
steps:
@@ -91,7 +91,7 @@ jobs:
9191
cp -v -R "${GITHUB_WORKSPACE}/GameData" "${RELEASE_DIR}"
9292
9393
- name: Upload artifacts
94-
uses: actions/upload-artifact@v1
94+
uses: actions/upload-artifact@v4
9595
with:
9696
name: RealSolarSystem
9797
path: ${{ steps.assemble-release.outputs.release-dir }}

.github/workflows/pr-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
pr_comment:
88
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- uses: actions/github-script@v3
1212
with:

0 commit comments

Comments
 (0)