mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
Bump actions/checkout from 5 to 6 (#12010)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
2
.github/workflows/autochangelog.yml
vendored
2
.github/workflows/autochangelog.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
||||
if: github.event.pull_request.merged == true
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Generate App Token
|
||||
id: app-token-generation
|
||||
|
||||
2
.github/workflows/autowiki.yml
vendored
2
.github/workflows/autowiki.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
||||
echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT
|
||||
- name: Checkout
|
||||
if: steps.secrets_set.outputs.SECRETS_ENABLED
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
- name: Install BYOND
|
||||
if: steps.secrets_set.outputs.SECRETS_ENABLED
|
||||
uses: ./.github/actions/restore_or_install_byond
|
||||
|
||||
2
.github/workflows/compile_changelogs.yml
vendored
2
.github/workflows/compile_changelogs.yml
vendored
@@ -34,7 +34,7 @@ jobs:
|
||||
|
||||
- name: "Checkout"
|
||||
#if: steps.value_holder.outputs.ACTIONS_ENABLED
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 25
|
||||
persist-credentials: false
|
||||
|
||||
6
.github/workflows/gbp.yml
vendored
6
.github/workflows/gbp.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
||||
issues: write # to apply labels
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
- name: Run Auto Labeler
|
||||
uses: actions/github-script@v8
|
||||
with:
|
||||
@@ -40,7 +40,7 @@ jobs:
|
||||
echo "ACTIONS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT
|
||||
- name: Checkout
|
||||
if: steps.value_holder.outputs.ACTIONS_ENABLED
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
- name: Setup git
|
||||
if: steps.value_holder.outputs.ACTIONS_ENABLED
|
||||
run: |
|
||||
@@ -48,7 +48,7 @@ jobs:
|
||||
git config --global user.email "<>"
|
||||
- name: Checkout alternate branch
|
||||
if: steps.value_holder.outputs.ACTIONS_ENABLED
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
ref: "gbp-balances" # The branch name
|
||||
path: gbp-balances
|
||||
|
||||
4
.github/workflows/gbp_collect.yml
vendored
4
.github/workflows/gbp_collect.yml
vendored
@@ -18,7 +18,7 @@ jobs:
|
||||
echo "ACTIONS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT
|
||||
- name: Checkout
|
||||
if: steps.value_holder.outputs.ACTIONS_ENABLED
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
- name: Setup git
|
||||
if: steps.value_holder.outputs.ACTIONS_ENABLED
|
||||
run: |
|
||||
@@ -26,7 +26,7 @@ jobs:
|
||||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
- name: Checkout alternate branch
|
||||
if: steps.value_holder.outputs.ACTIONS_ENABLED
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
ref: "gbp-balances" # The branch name
|
||||
path: gbp-balances
|
||||
|
||||
2
.github/workflows/remove_guide_comments.yml
vendored
2
.github/workflows/remove_guide_comments.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
- name: Remove guide comments
|
||||
uses: actions/github-script@v8
|
||||
with:
|
||||
|
||||
2
.github/workflows/render_nanomaps.yml
vendored
2
.github/workflows/render_nanomaps.yml
vendored
@@ -23,7 +23,7 @@ jobs:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Branch
|
||||
run: |
|
||||
|
||||
2
.github/workflows/run_extra_map_tests.yml
vendored
2
.github/workflows/run_extra_map_tests.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
||||
timeout-minutes: 15
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Ensure +x on CI directory
|
||||
run: |
|
||||
chmod -R +x ./tools/ci
|
||||
|
||||
2
.github/workflows/run_integration_tests.yml
vendored
2
.github/workflows/run_integration_tests.yml
vendored
@@ -28,7 +28,7 @@ jobs:
|
||||
timeout-minutes: 30
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Ensure +x on CI directory
|
||||
run: |
|
||||
chmod -R +x ./tools/ci
|
||||
|
||||
2
.github/workflows/run_linters.yml
vendored
2
.github/workflows/run_linters.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
||||
timeout-minutes: 15
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
# Caches
|
||||
|
||||
2
.github/workflows/tgs_test.yml
vendored
2
.github/workflows/tgs_test.yml
vendored
@@ -64,7 +64,7 @@ jobs:
|
||||
dotnet-version: 8.0.x
|
||||
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Test TGS Integration
|
||||
run: dotnet run -c Release --project tools/tgs_test ${{ github.repository }} /tgs_instances/tgstation ${{ env.TGS_API_PORT }} ${{ github.event.pull_request.head.sha || github.sha }} ${{ secrets.GITHUB_TOKEN }} ${{ env.PR_NUMBER }}
|
||||
|
||||
2
.github/workflows/update_tgs_dmapi.yml
vendored
2
.github/workflows/update_tgs_dmapi.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Clone
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Branch
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user