diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9b62da4..a0a2867 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,4 +4,8 @@ updates: - package-ecosystem: "docker" directory: "/" schedule: - interval: "weekly" + interval: "daily" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81d66e6..bf06d6b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true env: - GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 2917946..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,79 +0,0 @@ -## [0.4.0](https://github.com/dokku/netrc/compare/v0.3.2...v0.4.0) - 2021-10-09 - -### Added - -- #11 @josegonzalez Add dependabot config - -### Removed - -- #13 @josegonzalez Drop xenial - -### Changes - -- #12 @dependabot chore(deps): bump golang from 1.15.6-buster to 1.17.2-buster -- #14 @josegonzalez Updated golang and dependencies - -## [0.3.2](https://github.com/dokku/netrc/compare/v0.3.1...v0.3.2) - 2021-10-09 - -### Added - -- #7 @adam12 Add bullseye to deb release task -- #8 @josegonzalez Add support for raspberry pi - -## [0.3.1](https://github.com/dokku/netrc/compare/v0.3.0...v0.3.1) - 2021-03-04 - -### Fixes - -- @josegonzalez Create .netrc file if it does not exist - -## [0.3.0](https://github.com/dokku/netrc/compare/v0.2.2...v0.3.0) - 2021-02-21 - -### Changes - -- @josegonzalez Exit 0 if unset will be a no-op CI #34 -- @josegonzalez Rename project to netrc - -### Docs - -- @josegonzalez Add documentation for releases - -### Tests - -- @josegonzalez Add integration tests via bats - -## [0.2.2](https://github.com/dokku/netrc/compare/v0.2.1...v0.2.2) - 2021-02-20 - -### Fixes - -- @josegonzalez Set CI_BRANCH correctly for release process - -## [0.2.1](https://github.com/dokku/netrc/compare/v0.2.0...v0.2.1) - 2021-02-20 - -### Changes - -- @josegonzalez Recreate .env.docker when making a release -- @josegonzalez Use cli-skeleton to reduce boilerplate code - -## [0.2.0](https://github.com/dokku/netrc/compare/v0.1.0...v0.2.0) - 2021-02-20 - -### Changes - -- @josegonzalez Update cli skeleton -- @josegonzalez Update gh-release -- @josegonzalez Use upstream github.com/jdxcode/netrc -- @josegonzalez Transfer to dokku organization - -### Docs - -- @josegonzalez Document release process -- @josegonzalez Add changelog - -### Fixes - -- @josegonzalez Fix releases to packagecloud in github actions - -## [0.1.0](https://github.com/dokku/go-netrc/compare/d7ab1b3801669bc8bb5a603946305ffa38d15bc1...v0.1.0) - 2021-02-04 - -### New - -- @josegonzalez Initial implementation diff --git a/Dockerfile.build b/Dockerfile.build index 7eddc07..e371ace 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,4 +1,4 @@ -FROM golang:1.17.2-buster +FROM golang:1.17.3-buster RUN apt-get update \ && apt install apt-transport-https build-essential curl gnupg2 lintian rpm rsync rubygems-integration ruby-dev ruby -qy \ diff --git a/Makefile b/Makefile index bb53108..c86f796 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ NAME = netrc -EMAIL = dokku@josediazgonzalez.com +EMAIL = netrc@josediazgonzalez.com MAINTAINER = dokku MAINTAINER_NAME = Jose Diaz-Gonzalez REPOSITORY = netrc HARDWARE = $(shell uname -m) SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]') -BASE_VERSION ?= 0.4.0 +BASE_VERSION ?= 0.4.1 IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY) PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish diff --git a/README.md b/README.md index bbf881a..1e42884 100644 --- a/README.md +++ b/README.md @@ -24,4 +24,4 @@ Available commands are: ## Releases -Anybody can propose a release. First bump the version in `Makefile`, make sure `CHANGELOG.md` is up to date, and make sure tests are passing. Then open a Pull Request from `master` into the `release` branch. Once a maintainer approves and merges, Github Actions will build a release and upload it to Github. +Anybody can propose a release. First bump the version in `Makefile` and make sure tests are passing. Then open a Pull Request from `master` into the `release` branch. Once a maintainer approves and merges, Github Actions will build a release and upload it to Github.