Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/automatic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
Loading