diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e6bfe2..fcfba7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,9 @@ jobs: name: Lint & Type Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 22 cache: npm @@ -49,7 +49,7 @@ jobs: target: "" runs-on: ${{ matrix.runner }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: dtolnay/rust-toolchain@stable with: @@ -89,9 +89,9 @@ jobs: name: Frontend Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 22 cache: npm @@ -99,7 +99,7 @@ jobs: - run: npm ci - run: npm run build - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: frontend-dist path: dist/ diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml index bdf6ace..c9b220e 100644 --- a/.github/workflows/promote.yml +++ b/.github/workflows/promote.yml @@ -26,7 +26,7 @@ jobs: name: Promote ${{ inputs.promotion }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b0e5732..2cfbf9d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: prerelease: ${{ steps.version.outputs.prerelease }} channel: ${{ steps.version.outputs.channel }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -111,9 +111,9 @@ jobs: bundles: deb,appimage runs-on: ${{ matrix.runner }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 22 cache: npm