diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5c6d6e6..c147d5a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: name: "Build frontend" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v4" + - uses: "actions/checkout@v5" with: ref: "${{ inputs.ref }}" - uses: "actions/setup-node@v4" @@ -32,7 +32,7 @@ jobs: name: "Build backend" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v4" + - uses: "actions/checkout@v5" with: ref: "${{ inputs.ref }}" - run: "pipx install poetry" @@ -48,7 +48,7 @@ jobs: name: "Build logo" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v4" + - uses: "actions/checkout@v5" with: ref: "${{ inputs.ref }}" - run: "pipx install poetry" @@ -69,7 +69,7 @@ jobs: name: "Build example" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v4" + - uses: "actions/checkout@v5" with: ref: "${{ inputs.ref }}" - run: "pipx install poetry" diff --git a/.github/workflows/deploy1.yml b/.github/workflows/deploy1.yml index f9558a8..2ea6321 100644 --- a/.github/workflows/deploy1.yml +++ b/.github/workflows/deploy1.yml @@ -15,7 +15,7 @@ jobs: outputs: skip: "${{ steps.check_recursive.outputs.skip || 'false' }}" # Default to false if not set steps: - - uses: "actions/checkout@v4" + - uses: "actions/checkout@v5" with: # Ensure we are not in a detached HEAD state ref: "master" token: "${{ secrets.GH_PAT }}" diff --git a/.github/workflows/deploy2.yml b/.github/workflows/deploy2.yml index bdee550..1c89299 100644 --- a/.github/workflows/deploy2.yml +++ b/.github/workflows/deploy2.yml @@ -54,7 +54,7 @@ jobs: needs: "rebuild" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v4" + - uses: "actions/checkout@v5" with: ref: "${{ inputs.ref }}" - uses: "actions/setup-node@v4"