Skip to content
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
8 changes: 5 additions & 3 deletions .github/workflows/mirror_to_gitlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ jobs:
mirror-repository:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: mirror-repository
uses: spyoungtech/mirror-action@master
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: yesolutions/mirror-action@master
with:
REMOTE: ${{ secrets.GITLAB_REPO_SSH }}
GIT_SSH_PRIVATE_KEY: ${{ secrets.GIT_SSH_PRIVATE_KEY }}
GIT_SSH_NO_VERIFY_HOST: ${{ secrets.GIT_SSH_NO_VERIFY_HOST }}
PUSH_ALL_REFS: "false"
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.20.1
v18.20.1
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.4.4
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.2.2-alpine3.18 AS builder
FROM ruby:3.4.4-alpine3.22 AS builder

WORKDIR /app

Expand Down Expand Up @@ -36,7 +36,7 @@ RUN rm -rf tmp/cache vendor/assets spec node_modules

############### Build step done ###############

FROM ruby:3.2.2-alpine3.18
FROM ruby:3.4.4-alpine3.22

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gem 'redis', '~> 4.0' # for action_cable in production
gem 'rqrcode'
gem 'server_timing'
# gem 'supplejack_common', github: 'DigitalNZ/supplejack_common', branch: 'pm/upgrade'
gem 'supplejack_common', github: 'DigitalNZ/supplejack_common', tag: 'v3.0.1'
gem 'supplejack_common', github: 'DigitalNZ/supplejack_common', tag: 'v3.0.2'
gem 'two_factor_authentication'

# Logging
Expand Down
Loading
Loading