Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
echo "PR_BRANCH=`jq -r '.head.ref' <<<$pr_json`" >> $GITHUB_ENV
echo "PR_HEAD_LABEL=`jq -r '.head.label' <<<$pr_json`" >> $GITHUB_ENV

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ env.PR_REPO }}
ref: ${{ env.PR_BRANCH }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Run Linters
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup Cache
uses: actions/cache@v4
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
name: Lint with OpenDream
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Setup OD
run: |
bash tools/ci/setup_od.sh
Expand All @@ -87,7 +87,7 @@ jobs:
matrix:
byondtype: ['STABLE']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Restore BYOND from Cache
uses: ./.github/actions/restore_or_install_byond
with:
Expand All @@ -109,7 +109,7 @@ jobs:
station: ['boxstation', 'deltastation', 'metastation', 'cerestation', 'emeraldstation']
byondtype: ['STABLE']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Restore BYOND from Cache
uses: ./.github/actions/restore_or_install_byond
with:
Expand All @@ -131,7 +131,7 @@ jobs:
matrix:
byondtype: ['STABLE']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Restore BYOND from Cache
uses: ./.github/actions/restore_or_install_byond
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/devdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
name: Build and Deploy
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Build docs
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dmi5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ParadiseSS13/DMI5Checker@v1
with:
icons-path: 'icons'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate_autodoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: 'Update Branch'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 1
ref: master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge_upstream_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
echo "PR_BRANCH=`jq -r '.head.ref' <<<$pr_json`" >> $GITHUB_ENV
echo "PR_HEAD_LABEL=`jq -r '.head.label' <<<$pr_json`" >> $GITHUB_ENV

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ env.PR_REPO }}
ref: ${{ env.PR_BRANCH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/render_nanomaps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- run: echo "GH_TOKEN=${{ steps.create_token.outputs.token }}" >> "$GITHUB_ENV"

- name: 'Update Branch'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ steps.create_token.outputs.token }}

Expand Down