kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo

fix: update actions/checkout version to v6 in workflow files

Andrej d26728b4 9e930c54

+10 -10
+1 -1
.github/workflows/ci.yml
··· 8 8 runs-on: ubuntu-24.04 9 9 steps: 10 10 - name: Checkout 11 - uses: actions/checkout@v4 11 + uses: actions/checkout@v6 12 12 - name: Setup Biome 13 13 uses: biomejs/setup-biome@v2 14 14 with:
+1 -1
.github/workflows/deploy-site.yml
··· 29 29 30 30 steps: 31 31 - name: Checkout 32 - uses: actions/checkout@v4 32 + uses: actions/checkout@v6 33 33 34 34 - name: Setup Node 35 35 uses: actions/setup-node@v4
+1 -1
.github/workflows/docker-manual.yml
··· 34 34 35 35 steps: 36 36 - name: Checkout repository 37 - uses: actions/checkout@v4 37 + uses: actions/checkout@v6 38 38 39 39 - name: Set up QEMU 40 40 uses: docker/setup-qemu-action@v3
+1 -1
.github/workflows/docker.yml
··· 34 34 35 35 steps: 36 36 - name: Checkout repository 37 - uses: actions/checkout@v4 37 + uses: actions/checkout@v6 38 38 39 39 - name: Set up QEMU 40 40 uses: docker/setup-qemu-action@v3
+5 -5
.github/workflows/release.yml
··· 18 18 19 19 steps: 20 20 - name: Checkout 21 - uses: actions/checkout@v4 21 + uses: actions/checkout@v6 22 22 with: 23 23 fetch-depth: 0 24 24 25 25 - name: Setup Bun 26 - uses: oven-sh/setup-bun@v1 26 + uses: oven-sh/setup-bun@v2 27 27 with: 28 28 bun-version: latest 29 29 ··· 79 79 git tag "v${{ steps.new_version.outputs.version }}" 80 80 81 81 - name: Push changes 82 - uses: ad-m/github-push-action@master 82 + uses: ad-m/github-push-action@v1.0.0 83 83 with: 84 84 github_token: ${{ secrets.GITHUB_TOKEN }} 85 85 branch: ${{ github.ref }} 86 86 tags: true 87 87 88 88 - name: Create GitHub Release 89 - uses: softprops/action-gh-release@v1 89 + uses: softprops/action-gh-release@v2 90 90 with: 91 91 tag_name: v${{ steps.new_version.outputs.version }} 92 92 name: Release v${{ steps.new_version.outputs.version }} ··· 97 97 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 98 98 99 99 - name: Trigger Docker Build 100 - uses: actions/github-script@v7 100 + uses: actions/github-script@v8 101 101 with: 102 102 github-token: ${{ secrets.GITHUB_TOKEN }} 103 103 script: |
+1 -1
.github/workflows/update-contributors.yml
··· 19 19 20 20 steps: 21 21 - name: Checkout repository 22 - uses: actions/checkout@v4 22 + uses: actions/checkout@v6 23 23 24 24 - name: Generate Contributors Images 25 25 uses: jaywcjlove/github-action-contributors@main