Skip to content
Merged
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/changelog-updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ secrets.I18N_PAT }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: pnpm/action-setup@v6

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: beta
url: https://beta.dim.gg
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 2 # So sentry can get the previous commit

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: release
url: https://app.dim.gg
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 2 # So sentry can get the previous commit
# Use the dim-release-bot token rather than the default
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-bot-download.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
timeout-minutes: 20
steps:
- name: Checkout DIM
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.I18N_PAT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-bot-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout DIM
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Sort en.json
run: dimJSON="$(jq -S . src/locale/en.json)" && echo "${dimJSON}" > src/locale/en.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 3
token: ${{ secrets.I18N_PAT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Run actionlint
uses: reviewdog/action-actionlint@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notify-discord-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Post changelog to Discord
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notify-discord-i18n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 2 # needed to access HEAD^ for the previous version

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Inline setup - required for fork PR compatibility
# Cannot use ./.github/actions/setup-pnpm as it won't work from forks
Expand All @@ -31,7 +31,7 @@ jobs:
run: pnpm install --frozen-lockfile --prefer-offline

- name: Cache Manifest
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: manifest-cache
key: destiny-manifest-${{ github.run_number }}
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Inline setup - required for fork PR compatibility
- uses: pnpm/action-setup@v6
Expand All @@ -78,7 +78,7 @@ jobs:

# Optimized cache key: Only invalidate on config changes, not all dependencies
- name: Cache ESLint
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
.eslintcache
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
name: pr
url: ${{ steps.deploy-url.outputs.url }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Inline setup - required for fork PR compatibility
- uses: pnpm/action-setup@v6
Expand Down