diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 21db084c0..4f0fdc2ae 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,7 +20,7 @@ jobs: demo: ${{ steps.filter.outputs.demo }} shared: ${{ steps.filter.outputs.shared }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: dorny/paths-filter@v3 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@v5 + - uses: actions/checkout@v6 - uses: docker/setup-qemu-action@v3 - uses: docker/setup-buildx-action@v3 - uses: docker/login-action@v3 @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - 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 1d0e35c66..db1375db4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: steps: # Checkout action retreive the source (git clone) - - uses: actions/checkout@v5 + - 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 fba00a245..28c5fa981 100644 --- a/.github/workflows/standard-version.yml +++ b/.github/workflows/standard-version.yml @@ -15,7 +15,7 @@ jobs: steps: # Checkout action retreive the source (git clone) - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # needed to retreive all git history token: ${{ secrets.APP_GITHUB_TOKEN }}