diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3fb6844..df8fcab 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: demo: ${{ steps.filter.outputs.demo }} shared: ${{ steps.filter.outputs.shared }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: dorny/paths-filter@v2 id: filter with: @@ -45,7 +45,7 @@ jobs: if: ${{ needs.changes.outputs.shared == 'true' || needs.changes.outputs.demo == 'true' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up dockertags run: | @@ -87,7 +87,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Prepare uses: appleboy/ssh-action@master with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 97edcc1..55f1392 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: steps: # Checkout action retreive the source (git clone) - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 with: fetch-depth: 0 # needed to retreive all git history diff --git a/.github/workflows/standard-version.yml b/.github/workflows/standard-version.yml index 83e4816..eba0e26 100644 --- a/.github/workflows/standard-version.yml +++ b/.github/workflows/standard-version.yml @@ -20,7 +20,7 @@ jobs: steps: # Checkout action retreive the source (git clone) - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 with: fetch-depth: 0 # needed to retreive all git history token: ${{ secrets.APP_GITHUB_TOKEN }}