fix action url
This commit is contained in:
parent
2ccf061a33
commit
17cd87767c
2 changed files with 9 additions and 9 deletions
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
hosts: ${{ steps.hosts.outputs.hosts }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: action/checkout@v4
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
|
@ -45,7 +45,7 @@ jobs:
|
|||
|
||||
- name: Upload flake.lock
|
||||
if: steps.changes.outputs.changed == 'true'
|
||||
uses: action/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: flake-lock
|
||||
path: flake.lock
|
||||
|
|
@ -61,10 +61,10 @@ jobs:
|
|||
host: ${{ fromJson(needs.check-updates.outputs.hosts) }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: action/checkout@v4
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Download updated flake.lock
|
||||
uses: action/download-artifact@v4
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: flake-lock
|
||||
|
||||
|
|
@ -77,7 +77,7 @@ jobs:
|
|||
|
||||
- name: Upload build log on failure
|
||||
if: failure() || steps.build.outcome == 'failure'
|
||||
uses: action/upload-artifact
|
||||
uses: actions/upload-artifact
|
||||
with:
|
||||
name: build-failure-${{ matrix.host }}
|
||||
path: build-output.txt
|
||||
|
|
@ -96,7 +96,7 @@ jobs:
|
|||
runs-on: nix
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: action/checkout@v4
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
|
@ -106,13 +106,13 @@ jobs:
|
|||
git config user.email "bot@noreply.local"
|
||||
|
||||
- name: Download updated flake.lock
|
||||
uses: action/download-artifact@v4
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: flake-lock
|
||||
|
||||
- name: Download failure artifacts
|
||||
if: needs.build.result == 'failure'
|
||||
uses: action/download-artifact@v4
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: build-failure-*
|
||||
path: failures
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ in
|
|||
};
|
||||
actions = {
|
||||
ENABLED = true;
|
||||
DEFAULT_ACTIONS_URL = "https://code.forgejo.org";
|
||||
DEFAULT_ACTIONS_URL = "github";
|
||||
ARTIFACT_RETENTION_DAYS = 90;
|
||||
};
|
||||
} cfg.settings;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue