diff --git a/.github/workflows/build-and-upload-artifacts.yaml b/.github/workflows/build-and-upload-artifacts.yaml index 4c8fb556..d340ed0a 100644 --- a/.github/workflows/build-and-upload-artifacts.yaml +++ b/.github/workflows/build-and-upload-artifacts.yaml @@ -65,7 +65,7 @@ jobs: cargo install --locked trunk - name: Install just - uses: extractions/setup-just@v1 + uses: extractions/setup-just@v2 - name: Build ofdb-app-clearance run: just build-clearance @@ -78,7 +78,7 @@ jobs: id: upload-tagged-release-artifact # Only triggered by version tags that start with 'v' if: startsWith(github.ref, 'refs/tags/v') && startsWith(github.event.release.tag_name, 'v') - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: # Artifact is stored and downloaded as .zip archive name: openfairdb_${{ github.event.release.tag_name }}_${{ matrix.target }}${{ matrix.executable_suffix }} @@ -86,7 +86,7 @@ jobs: - name: Upload untagged artifact if: steps.upload-tagged-release-artifact.outcome == 'skipped' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: # Artifact is stored and downloaded as .zip archive name: openfairdb_${{ github.sha }}_${{ matrix.target }}${{ matrix.executable_suffix }} diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index c5c4160b..aecafb0f 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.x" @@ -38,7 +38,7 @@ jobs: shared-key: "pre-commit" - name: Install just - uses: extractions/setup-just@v1 + uses: extractions/setup-just@v2 - name: Install Trunk for building the webapp run: | @@ -49,11 +49,11 @@ jobs: run: just build-clearance - name: Detect code style issues (push) - uses: pre-commit/action@v3.0.0 + uses: pre-commit/action@v3.0.1 if: github.event_name == 'push' - name: Detect code style issues (pull_request) - uses: pre-commit/action@v3.0.0 + uses: pre-commit/action@v3.0.1 if: github.event_name == 'pull_request' env: SKIP: no-commit-to-branch