Skip to content

Commit c0035f8

Browse files
committed
* 'main' of https://github.com/go-gitea/gitea: (50 commits) [skip ci] Updated translations via Crowdin ci: regenerate codemirror languages on renovate npm updates (go-gitea#38267) build: fix snapcraft release (go-gitea#38260) chore(deps): update dependency js-yaml to v5 (go-gitea#38262) chore(deps): update actions/cache action to v6 (go-gitea#38261) fix(deps): update module gitlab.com/gitlab-org/api/client-go/v2 to v2.42.0 (go-gitea#38266) fix(deps): update go dependencies (go-gitea#38194) chore: various UI problems (go-gitea#38263) fix: update npm dependencies, fix misc issues (go-gitea#38257) chore(deps): update action dependencies (go-gitea#38258) fix(packages): validate debian distribution and component names (go-gitea#38116) chore(deps): update python dependencies (go-gitea#38256) fix: flex divided list item shrink (go-gitea#38255) [skip ci] Updated translations via Crowdin fix(actions): authenticate snapcraft before nightly remote build (go-gitea#38252) revert(sign): restore gpg (go-gitea#38251) fix(api): respect since/until when counting commits for X-Total-Count (go-gitea#38204) build(sign): move to sigstore (go-gitea#38250) fix: codemirror regressions (go-gitea#38248) fix(api): support HEAD requests on all API GET endpoints (go-gitea#38245) ...
2 parents 984e413 + 0f0a38c commit c0035f8

253 files changed

Lines changed: 8762 additions & 4158 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/go-cache/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,34 +16,34 @@ runs:
1616
using: composite
1717
steps:
1818
- if: ${{ github.workflow == 'cache-seeder' }}
19-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
19+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
2020
with:
2121
path: ~/go/pkg/mod
2222
key: gomod-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum') }}
2323
- if: ${{ github.workflow != 'cache-seeder' }}
24-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
24+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
2525
with:
2626
path: ~/go/pkg/mod
2727
key: gomod-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum') }}
2828
restore-keys: gomod-${{ runner.os }}-${{ runner.arch }}
2929
- if: ${{ github.workflow == 'cache-seeder' && inputs.lint-cache != 'true' }}
30-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
30+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3131
with:
3232
path: ~/.cache/go-build
3333
key: gobuild-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum') }}
3434
- if: ${{ github.workflow != 'cache-seeder' || inputs.lint-cache == 'true' }}
35-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
35+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3636
with:
3737
path: ~/.cache/go-build
3838
key: gobuild-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum') }}
3939
restore-keys: gobuild-${{ runner.os }}-${{ runner.arch }}
4040
- if: ${{ inputs.lint-cache == 'true' && github.workflow == 'cache-seeder' }}
41-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
41+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
4242
with:
4343
path: ~/.cache/golangci-lint
4444
key: golint-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum', '.golangci.yml') }}
4545
- if: ${{ inputs.lint-cache == 'true' && github.workflow != 'cache-seeder' }}
46-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
46+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
4747
with:
4848
path: ~/.cache/golangci-lint
4949
key: golint-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum', '.golangci.yml') }}

.github/actions/go-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
using: composite
1414
steps:
1515
- uses: ./.github/actions/free-disk-space
16-
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
16+
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
1717
with:
1818
go-version-file: go.mod
1919
check-latest: true

.github/actions/node-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
runs:
1010
using: composite
1111
steps:
12-
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
12+
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
1313
- if: ${{ inputs.cache == 'true' }}
1414
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
1515
with:

.github/workflows/cache-seeder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
gobuild:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
32+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
3333
- uses: ./.github/actions/go-setup
3434
- run: make deps-backend deps-tools
3535
- run: TAGS="bindata" make backend
@@ -59,7 +59,7 @@ jobs:
5959
include:
6060
- { tags: "bindata", target: "lint-backend" }
6161
steps:
62-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
62+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
6363
- uses: ./.github/actions/go-setup
6464
with:
6565
lint-cache: "true"

.github/workflows/cron-licenses.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
permissions:
1313
contents: write
1414
steps:
15-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
16-
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
15+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
16+
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
1717
with:
1818
go-version-file: go.mod
1919
check-latest: true

.github/workflows/cron-renovate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
if: github.repository == 'go-gitea/gitea' # prevent running on forks
2121
timeout-minutes: 30
2222
steps:
23-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
24-
- uses: renovatebot/github-action@8217b3fc286df088d7c27f3255fe8414463bc0fd # v46.1.15
23+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
24+
- uses: renovatebot/github-action@6d859fc95779be83a0335ca704879b47e5d79641 # v46.1.16
2525
with:
2626
renovate-version: ${{ env.RENOVATE_VERSION }}
2727
configurationFile: renovate.json5

.github/workflows/cron-translations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
permissions:
1313
contents: write
1414
steps:
15-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
16-
- uses: crowdin/github-action@8868a33591d21088edfc398968173a3b98d51706 # v2.16.2
15+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
16+
- uses: crowdin/github-action@52aa776766211d83d975df51f3b9c53c2f8ba35f # v2.16.3
1717
with:
1818
upload_sources: true
1919
upload_translations: false

.github/workflows/files-changed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
e2e: ${{ steps.changes.outputs.e2e }}
5050
shell: ${{ steps.changes.outputs.shell }}
5151
steps:
52-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
52+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
5353
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
5454
id: changes
5555
with:

.github/workflows/giteabot-backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 30
2121
steps:
22-
- uses: go-gitea/giteabot@f8a6f4c14d46920b4b5448852be3de72d00066f0 # v1.0.3
22+
- uses: go-gitea/giteabot@912675d47455ac93be82d8bda4667a02b20a6fe4 # v1.0.4
2323
with:
2424
github_token: ${{ secrets.GITEABOT_TOKEN }}
2525
gitea_fork: giteabot/gitea

.github/workflows/giteabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
# pull_request_review runs without repository secrets on fork PRs, so fall
6060
# back to the workflow token for the non-backport checks handled here.
61-
- uses: go-gitea/giteabot@f8a6f4c14d46920b4b5448852be3de72d00066f0 # v1.0.3
61+
- uses: go-gitea/giteabot@912675d47455ac93be82d8bda4667a02b20a6fe4 # v1.0.4
6262
with:
6363
github_token: ${{ secrets.GITEABOT_TOKEN || github.token }}
6464
checks: ${{ github.event.inputs.checks || 'labels,merge_queue,lock,feedback,last_call,milestones,lgtm,translation_comment,pr_actions' }}

0 commit comments

Comments
 (0)