Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update neovim to 0.9.5 #16

Merged
merged 4 commits into from
Apr 11, 2024
Merged
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
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ updates:
interval: "weekly"
- package-ecosystem: docker
directory: "/"
target-branch: "develop"
schedule:
interval: "weekly"
- package-ecosystem: gomod
directory: "/"
target-branch: "develop"
schedule:
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ jobs:
elif [ "$BRANCH" = "main" ]; then
echo "version=latest" >> $GITHUB_OUTPUT
echo "alpine_version=alpine" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64,linux/arm64/v8" >> $GITHUB_OUTPUT
else
echo "version=$BRANCH" >> $GITHUB_OUTPUT
echo "alpine_version=$BRANCH-alpine" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64,linux/arm64/v8" >> $GITHUB_OUTPUT
fi

- name: Build and push final image
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ jobs:
elif [ "$BRANCH" = "main" ]; then
echo "version=latest" >> $GITHUB_OUTPUT
echo "debian_version=debian" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64,linux/arm64/v8" >> $GITHUB_OUTPUT
else
echo "version=$BRANCH" >> $GITHUB_OUTPUT
echo "debian_version=$BRANCH-debian" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64,linux/arm64/v8" >> $GITHUB_OUTPUT
fi

- name: Build and push final image
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,17 @@ jobs:
repository: kbuley/basedevcontainer
short-description: Base development container for Visual Studio Code, used as base image by other images
readme-filepath: README.md
quayIODescription:
name: Push README to Quay.io
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Quay.io Description
uses: christian-korneck/update-container-description-action@v1
env:
DOCKER_APIKEY: ${{ secrets.QUAY_API_KEY }}
with:
destination_container_repo: quay.io/kbuley/basedevcontainer
provider: quay
readme_file: "README.md"
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ jobs:
elif [ "$BRANCH" = "main" ]; then
echo "version=latest" >> $GITHUB_OUTPUT
echo "ubuntu_version=ubuntu" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64,linux/arm64/v8" >> $GITHUB_OUTPUT
else
echo "version=$BRANCH" >> $GITHUB_OUTPUT
echo "ubuntu_version=$BRANCH-ubuntu" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64,linux/arm64,linux/arm64/v8" >> $GITHUB_OUTPUT
fi

- name: Build and push final image
Expand Down
2 changes: 1 addition & 1 deletion alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM kbuley/binpot:gh-${GH_VERSION} AS gh
FROM kbuley/binpot:lazygit-${LAZYGIT_VERSION} as lazygit

FROM alpine:${ALPINE_VERSION} as neovim
ARG NEOVIM_VERSION=v0.9.4
ARG NEOVIM_VERSION=v0.9.5
WORKDIR /builder

#hadolint ignore=DL3018
Expand Down
2 changes: 1 addition & 1 deletion debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM kbuley/binpot:gh-${GH_VERSION} AS gh
FROM kbuley/binpot:lazygit-${LAZYGIT_VERSION} as lazygit

FROM debian:${DEBIAN_VERSION} as neovim
ARG NEOVIM_VERSION=v0.9.4
ARG NEOVIM_VERSION=v0.9.5
WORKDIR /builder
# hadolint ignore=DL3008
RUN apt-get update -y && apt-get install -y --no-install-recommends \
Expand Down
2 changes: 1 addition & 1 deletion ubuntu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM kbuley/binpot:gh-${GH_VERSION} AS gh
FROM kbuley/binpot:lazygit-${LAZYGIT_VERSION} as lazygit

FROM ubuntu:${UBUNTU_VERSION} as neovim
ARG NEOVIM_VERSION=v0.9.4
ARG NEOVIM_VERSION=v0.9.5
WORKDIR /builder
# hadolint ignore=DL3008
RUN apt-get update -y && apt-get install -y --no-install-recommends \
Expand Down