diff --git a/.forgejo/prepare-end-to-end/action.yml b/.forgejo/prepare-end-to-end/action.yml index 6ecf4124..5d58bba5 100644 --- a/.forgejo/prepare-end-to-end/action.yml +++ b/.forgejo/prepare-end-to-end/action.yml @@ -3,7 +3,7 @@ runs: steps: - name: cache S3 binaries id: S3 - uses: https://code.forgejo.org/actions/cache@v4 + uses: https://data.forgejo.org/actions/cache@v4 with: path: | /usr/local/bin/minio @@ -11,7 +11,7 @@ runs: /usr/local/bin/garage key: S3 - - uses: https://code.forgejo.org/actions/setup-forgejo@v2.0.10 + - uses: https://data.forgejo.org/actions/setup-forgejo@v2.0.10 with: install-only: true - run: forgejo-binary.sh ensure_user forgejo diff --git a/.forgejo/workflows/end-to-end.yml b/.forgejo/workflows/end-to-end.yml index 35b27fcb..3ab7a47b 100644 --- a/.forgejo/workflows/end-to-end.yml +++ b/.forgejo/workflows/end-to-end.yml @@ -25,8 +25,8 @@ jobs: container: image: 'code.forgejo.org/oci/node:20-bookworm' steps: - - uses: https://code.forgejo.org/actions/checkout@v4 - - uses: https://code.forgejo.org/actions/setup-go@v5 + - uses: https://data.forgejo.org/actions/checkout@v4 + - uses: https://data.forgejo.org/actions/setup-go@v5 with: go-version: "1.22" - name: lib/build.sh @@ -64,7 +64,7 @@ jobs: needs: [build] runs-on: lxc-bookworm steps: - - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: https://data.forgejo.org/actions/checkout@v4 - uses: ./.forgejo/prepare-end-to-end - run: su forgejo -c "./end-to-end.sh test_packages" - name: full logs @@ -75,7 +75,7 @@ jobs: needs: [build] runs-on: lxc-bookworm steps: - - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: https://data.forgejo.org/actions/checkout@v4 - uses: ./.forgejo/prepare-end-to-end - run: ./end-to-end.sh prepare_dockerd - run: su forgejo -c "./end-to-end.sh test_actions" @@ -87,14 +87,14 @@ jobs: needs: [build] runs-on: lxc-bookworm steps: - - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: https://data.forgejo.org/actions/checkout@v4 - uses: ./.forgejo/prepare-end-to-end - name: install zstd run: | export DEBIAN_FRONTEND=noninteractive apt-get -q install -y -qq zstd - name: cache GitLab OCI image - uses: https://code.forgejo.org/actions/cache@v4 + uses: https://data.forgejo.org/actions/cache@v4 with: path: | /srv/forgejo-binaries/gitlab @@ -120,7 +120,7 @@ jobs: forgejo: https://codeberg.org owner: forgejo steps: - - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: https://data.forgejo.org/actions/checkout@v4 - uses: ./.forgejo/prepare-end-to-end - name: set full-version id: full-version @@ -132,7 +132,7 @@ jobs: - run: ./end-to-end.sh prepare_dockerd - run: su forgejo -c "./end-to-end.sh test_actions ${{ matrix.info.version }}" - name: update documentation - uses: https://code.forgejo.org/actions/cascading-pr@v2.1 + uses: https://data.forgejo.org/actions/cascading-pr@v2.1 with: origin-url: ${{ env.GITHUB_SERVER_URL }} origin-repo: ${{ github.repository }} @@ -154,7 +154,7 @@ jobs: needs: [build] runs-on: lxc-bookworm steps: - - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: https://data.forgejo.org/actions/checkout@v4 - uses: ./.forgejo/prepare-end-to-end - run: su forgejo -c "./end-to-end.sh test_upgrades" - run: su forgejo -c "./end-to-end.sh test_storage" diff --git a/actions/example-artifacts-v4/.forgejo/workflows/test.yml b/actions/example-artifacts-v4/.forgejo/workflows/test.yml index d2153546..526def6d 100644 --- a/actions/example-artifacts-v4/.forgejo/workflows/test.yml +++ b/actions/example-artifacts-v4/.forgejo/workflows/test.yml @@ -7,7 +7,7 @@ jobs: - run: touch artifacts/ONE artifacts/TWO - - uses: https://code.forgejo.org/forgejo/upload-artifact@v4 + - uses: https://data.forgejo.org/forgejo/upload-artifact@v4 with: name: many-artifacts path: artifacts/ @@ -16,7 +16,7 @@ jobs: needs: [upload-many] runs-on: docker steps: - - uses: https://code.forgejo.org/forgejo/download-artifact@v4 + - uses: https://data.forgejo.org/forgejo/download-artifact@v4 - run: | test -f many-artifacts/ONE @@ -29,7 +29,7 @@ jobs: - run: echo hello > path/to/artifact/world.txt - - uses: https://code.forgejo.org/forgejo/upload-artifact@v4 + - uses: https://data.forgejo.org/forgejo/upload-artifact@v4 with: name: my-artifact path: path/to/artifact/world.txt @@ -40,7 +40,7 @@ jobs: steps: - run: "! test -f world.txt" - - uses: https://code.forgejo.org/forgejo/download-artifact@v4 + - uses: https://data.forgejo.org/forgejo/download-artifact@v4 with: name: my-artifact diff --git a/actions/example-cache-proxy/getter/.forgejo/workflows/get.yml b/actions/example-cache-proxy/getter/.forgejo/workflows/get.yml index 33c5f4af..ffaf9e9d 100644 --- a/actions/example-cache-proxy/getter/.forgejo/workflows/get.yml +++ b/actions/example-cache-proxy/getter/.forgejo/workflows/get.yml @@ -8,7 +8,7 @@ jobs: steps: - name: cache restore id: cachestep - uses: https://code.forgejo.org/actions/cache/restore@v4 + uses: https://data.forgejo.org/actions/cache/restore@v4 with: path: | /usr/local/bin/something diff --git a/actions/example-cache-proxy/storer/.forgejo/workflows/store.yml b/actions/example-cache-proxy/storer/.forgejo/workflows/store.yml index 525334af..f8d42047 100644 --- a/actions/example-cache-proxy/storer/.forgejo/workflows/store.yml +++ b/actions/example-cache-proxy/storer/.forgejo/workflows/store.yml @@ -10,7 +10,7 @@ jobs: run: echo SOMETHING > /usr/local/bin/something - name: cache save - uses: https://code.forgejo.org/actions/cache/save@v4 + uses: https://data.forgejo.org/actions/cache/save@v4 with: path: | /usr/local/bin/something diff --git a/actions/example-cache/.forgejo/workflows/test.yml b/actions/example-cache/.forgejo/workflows/test.yml index ab37b75d..c8d1e0bf 100644 --- a/actions/example-cache/.forgejo/workflows/test.yml +++ b/actions/example-cache/.forgejo/workflows/test.yml @@ -8,7 +8,7 @@ jobs: steps: - name: cache restore id: cachestep1 - uses: https://code.forgejo.org/actions/cache/restore@v4 + uses: https://data.forgejo.org/actions/cache/restore@v4 with: path: | /usr/local/bin/something @@ -23,7 +23,7 @@ jobs: run: echo SOMETHING > /usr/local/bin/something - name: cache save - uses: https://code.forgejo.org/actions/cache/save@v4 + uses: https://data.forgejo.org/actions/cache/save@v4 with: path: | /usr/local/bin/something @@ -34,7 +34,7 @@ jobs: - name: cache restore id: cachestep2 - uses: https://code.forgejo.org/actions/cache/restore@v4 + uses: https://data.forgejo.org/actions/cache/restore@v4 with: path: | /usr/local/bin/something diff --git a/actions/example-docker-action/.forgejo/workflows/test.yml b/actions/example-docker-action/.forgejo/workflows/test.yml index 988a81ed..6bc63c6d 100644 --- a/actions/example-docker-action/.forgejo/workflows/test.yml +++ b/actions/example-docker-action/.forgejo/workflows/test.yml @@ -7,7 +7,7 @@ jobs: # # This Docker action creates the file SOMEFILE ... # - - uses: https://code.forgejo.org/forgejo/test-setup-forgejo-docker@main + - uses: https://data.forgejo.org/forgejo/test-setup-forgejo-docker@main with: args: ${{ github.workspace }}/SOMEFILE # diff --git a/actions/example-pull-request/.forgejo/workflows/test.yml b/actions/example-pull-request/.forgejo/workflows/test.yml index 772a38f8..829d9221 100644 --- a/actions/example-pull-request/.forgejo/workflows/test.yml +++ b/actions/example-pull-request/.forgejo/workflows/test.yml @@ -139,7 +139,7 @@ jobs: ${{ toJSON(github) }} EOF - - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: https://data.forgejo.org/actions/checkout@v4 - name: checkout the default branch if pull_request_target run: | set -x