Skip to content

Commit

Permalink
update more ci actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick VanCise authored and Nick VanCise committed Feb 7, 2024
1 parent 83b1c35 commit 2524356
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/admin.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sparse-checkout-cone-mode: false

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auth.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sparse-checkout-cone-mode: false

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gbajs3.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sparse-checkout-cone-mode: false

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.1.0

Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/unprotected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5.3.1
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
- uses: dorny/paths-filter@v3.0.0
cancel_others: 'true'
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
Expand All @@ -35,15 +36,15 @@ jobs:
admin:
needs: change-detect
if: needs.change-detect.outputs.admin == 'true' && needs.pre_job.outputs.should_skip != 'true'
if: needs.change-detect.outputs.admin == 'true' && needs.change-detect.outputs.duplicate_check != 'true'
uses: ./.github/workflows/admin.workflow.yml

auth:
needs: change-detect
if: needs.change-detect.outputs.auth == 'true' && needs.pre_job.outputs.should_skip != 'true'
if: needs.change-detect.outputs.auth == 'true' && needs.change-detect.outputs.duplicate_check != 'true'
uses: ./.github/workflows/auth.workflow.yml

gbajs3:
needs: change-detect
if: needs.change-detect.outputs.gbajs3 == 'true' && needs.pre_job.outputs.should_skip != 'true'
if: needs.change-detect.outputs.gbajs3 == 'true' && needs.change-detect.outputs.duplicate_check != 'true'
uses: ./.github/workflows/gbajs3.workflow.yml

0 comments on commit 2524356

Please sign in to comment.