Skip to content

Commit

Permalink
Update Github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanchatelain committed May 16, 2024
1 parent dc0bc48 commit 8c5d419
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-fuzzy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
name: ${{ matrix.NAME }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Check for file changes
uses: jitterbit/get-changed-files@v1
uses: tj-actions/changed-files@v44
id: changes

- name: Print list of changed files
Expand All @@ -61,7 +61,7 @@ jobs:
- name: If Dockerfiles have been updated, cancel running upstream jobs
if: contains(steps.changes.outputs.all, ${{ env.RUN_IF_CHANGED }})
continue-on-error: true
uses: n1hility/cancel-previous-runs@v2
uses: n1hility/cancel-previous-runs@v3
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}

Expand All @@ -80,7 +80,7 @@ jobs:
- name: Download Docker artifacts, if available
if: contains(steps.changes.outputs.all, ${{ env.RUN_IF_CHANGED }})
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: ${{ matrix.DOCKER_FROM }}
path: /tmp
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Upload Docker artifacts
if: contains(steps.changes.outputs.all, ${{ env.RUN_IF_CHANGED }})
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.DOCKER_TO }}
path: /tmp/${{ matrix.DOCKER_TO }}.tar
Expand All @@ -123,18 +123,18 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Check for file changes
uses: jitterbit/get-changed-files@v1
uses: tj-actions/changed-files@v44
id: changes

- name: Print list of changed files
run: echo ${{ steps.changes.outputs.all }}

- name: If Dockerfiles have been updated, cancel running upstream jobs
if: contains(steps.changes.outputs.all, ${{ env.RUN_IF_CHANGED }})
uses: n1hility/cancel-previous-runs@v2
uses: n1hility/cancel-previous-runs@v3
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}

Expand All @@ -153,7 +153,7 @@ jobs:
- name: Download Docker artifacts, if available
if: contains(steps.changes.outputs.all, ${{ env.RUN_IF_CHANGED }})
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: ${{ env.DOCKER_FROM }}
path: /tmp
Expand Down

0 comments on commit 8c5d419

Please sign in to comment.