-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #839 from greenriver/release-63
Release 63
- Loading branch information
Showing
58 changed files
with
350 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
aws-cli | ||
bash | ||
build-base | ||
ca-certificates | ||
chromium | ||
curl | ||
curl-dev | ||
file | ||
file-dev | ||
freetds-dev | ||
freetype | ||
freetype-dev | ||
geos | ||
geos-dev | ||
git | ||
glib | ||
harfbuzz | ||
icu | ||
icu-dev | ||
imagemagick | ||
lftp | ||
libcurl | ||
libgcc | ||
libintl | ||
libmagic | ||
libstdc++ | ||
libx11 | ||
libxext | ||
libxml2-dev | ||
libxrender | ||
libxslt-dev | ||
nodejs | ||
npm | ||
nss | ||
postgis | ||
postgresql | ||
postgresql-dev | ||
shared-mime-info | ||
tmux | ||
ttf-dejavu | ||
ttf-droid | ||
ttf-freefont | ||
ttf-freefont | ||
ttf-freefont | ||
ttf-liberation | ||
tzdata | ||
xz | ||
yarn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Bundle Audit and Brakeman | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
- '**/*' | ||
concurrency: | ||
group: ${{ github.ref }}-audit | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
audit: | ||
runs-on: ubuntu-20.04 | ||
# Docker Hub image that the job executes in | ||
container: ruby:3.1.6-alpine3.20 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up dependencies | ||
run: | | ||
apk add --no-cache $(cat .github/dependencies.txt) | ||
- name: 'Install gems' | ||
run: | | ||
gem install bundler --version=2.5.17 | ||
bundle config set --local without 'production staging development' | ||
bundle install --jobs 4 --retry 3 | ||
- name: Run bundle-audit | ||
run: | | ||
bundle exec bundle-audit check --update | ||
- name: Run brakeman | ||
run: | | ||
bundle exec brakeman -q --no-pager --except PermitAttributes,Render |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.