diff --git a/.github/workflows/automatic-release.yaml b/.github/workflows/automatic-release.yaml index bbee0c1..f4772a1 100644 --- a/.github/workflows/automatic-release.yaml +++ b/.github/workflows/automatic-release.yaml @@ -22,7 +22,7 @@ jobs: outputs: labels: ${{ steps.match-label.outputs.match }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - id: match-label shell: bash run: | @@ -39,7 +39,7 @@ jobs: outputs: version: ${{ steps.version.outputs.version }} steps: - - uses: zwaldowski/semver-release-action@v4 + - uses: zwaldowski/semver-release-action@v6 id: version with: bump: ${{ needs.get-labels.outputs.labels }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a474d1b..19d1e97 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,7 +29,7 @@ jobs: packages: write steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Set up Docker Buildx - name: Set up Docker Buildx @@ -96,7 +96,7 @@ jobs: needs: manifest runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: marvinpinto/action-automatic-releases@latest with: @@ -112,7 +112,7 @@ jobs: needs: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Create release branch run: git checkout -b release/${{ inputs.version }} diff --git a/Dockerfile b/Dockerfile index 515f201..4883c4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -103,7 +103,7 @@ ENV PATH="/usr/local/bin:${PATH}" RUN python3 -m pip install --upgrade pip # Use git to clone gtsam and specific GTSAM version -FROM alpine/git:2.49.0 as gtsam-clone +FROM alpine/git:2.52.0 as gtsam-clone ARG GTSAM_VERSION=4.2.0 WORKDIR /usr/src/