Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/build-with-patches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
latestHash: ${{ steps.release-tag.outputs.latestHash }}
tag: ${{ steps.release-tag.outputs.tag }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand All @@ -24,7 +24,7 @@ jobs:
needs: [calculate-tag]
if: needs.calculate-tag.outputs.versionHash != needs.calculate-tag.outputs.latestHash
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
Expand All @@ -44,7 +44,7 @@ jobs:
needs: [calculate-tag]
if: needs.calculate-tag.outputs.versionHash != needs.calculate-tag.outputs.latestHash
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
Expand All @@ -70,7 +70,7 @@ jobs:
needs: ["calculate-tag", "build", "test"]
if: github.ref == 'refs/heads/distribution' && needs.calculate-tag.outputs.versionHash != needs.calculate-tag.outputs.latestHash
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
application_id: ${{ secrets.XING_ACTIONS_APP_ID }}
application_private_key: ${{ secrets.XING_ACTIONS_PRIVATE_KEY }}
permissions: "contents:write,workflows:write"
- uses: actions/checkout@v3
- uses: actions/checkout@v6
name: Reset xing/act#master to latest nektos/act#master
with:
ref: master
Expand All @@ -28,7 +28,7 @@ jobs:
git fetch upstream
git reset --hard upstream/master
git push --follow-tags --force origin master
- uses: actions/checkout@v3
- uses: actions/checkout@v6
name: Update act submodule and push to xing/act#distribution
with:
ref: distribution
Expand Down