Use default repo for action v4
This commit is contained in:
parent
63c3d4bec5
commit
2ccf061a33
1 changed files with 8 additions and 8 deletions
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
hosts: ${{ steps.hosts.outputs.hosts }}
|
hosts: ${{ steps.hosts.outputs.hosts }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: forgejo/checkout@v4
|
uses: action/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|
@ -45,7 +45,7 @@ jobs:
|
||||||
|
|
||||||
- name: Upload flake.lock
|
- name: Upload flake.lock
|
||||||
if: steps.changes.outputs.changed == 'true'
|
if: steps.changes.outputs.changed == 'true'
|
||||||
uses: forgejo/upload-artifact@v4
|
uses: action/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: flake-lock
|
name: flake-lock
|
||||||
path: flake.lock
|
path: flake.lock
|
||||||
|
|
@ -61,10 +61,10 @@ jobs:
|
||||||
host: ${{ fromJson(needs.check-updates.outputs.hosts) }}
|
host: ${{ fromJson(needs.check-updates.outputs.hosts) }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: forgejo/checkout@v4
|
uses: action/checkout@v4
|
||||||
|
|
||||||
- name: Download updated flake.lock
|
- name: Download updated flake.lock
|
||||||
uses: forgejo/download-artifact@v4
|
uses: action/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: flake-lock
|
name: flake-lock
|
||||||
|
|
||||||
|
|
@ -77,7 +77,7 @@ jobs:
|
||||||
|
|
||||||
- name: Upload build log on failure
|
- name: Upload build log on failure
|
||||||
if: failure() || steps.build.outcome == 'failure'
|
if: failure() || steps.build.outcome == 'failure'
|
||||||
uses: forgejo/upload-artifact
|
uses: action/upload-artifact
|
||||||
with:
|
with:
|
||||||
name: build-failure-${{ matrix.host }}
|
name: build-failure-${{ matrix.host }}
|
||||||
path: build-output.txt
|
path: build-output.txt
|
||||||
|
|
@ -96,7 +96,7 @@ jobs:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: forgejo/checkout@v4
|
uses: action/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|
@ -106,13 +106,13 @@ jobs:
|
||||||
git config user.email "bot@noreply.local"
|
git config user.email "bot@noreply.local"
|
||||||
|
|
||||||
- name: Download updated flake.lock
|
- name: Download updated flake.lock
|
||||||
uses: forgejo/download-artifact@v4
|
uses: action/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: flake-lock
|
name: flake-lock
|
||||||
|
|
||||||
- name: Download failure artifacts
|
- name: Download failure artifacts
|
||||||
if: needs.build.result == 'failure'
|
if: needs.build.result == 'failure'
|
||||||
uses: forgejo/download-artifact@v4
|
uses: action/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
pattern: build-failure-*
|
pattern: build-failure-*
|
||||||
path: failures
|
path: failures
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue