Skip to content

Commit

Permalink
Updated commit hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Feb 5, 2024
1 parent 94434ca commit 630b751
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install SSH key
uses: shimataro/ssh-key-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
package-name: ${{env.NPM_MODULE_NAME}}
pull-request-title-pattern: 'chore${scope}: release ${version} [skip-ci]'
# The logic below handles the npm publication:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# these if statements ensure that a publication only occurs when
# a new release is created:
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
Expand All @@ -48,7 +48,7 @@ jobs:
steps:
- run: echo version v${{needs.release_please.outputs.major}}.${{needs.release_please.outputs.minor}}.${{needs.release_please.outputs.patch}}

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
ports:
- 6379:6379
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.7.0
Expand All @@ -36,7 +36,7 @@ jobs:
mongodb-db: wildduck-test

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: which mongosh
Expand Down
8 changes: 4 additions & 4 deletions setup/01_install_commits.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ NODE_MAJOR="20"
MONGODB="7.0"
CODENAME=`lsb_release -c -s`

WILDDUCK_COMMIT="cd3d52959e654af0e1cb56b612a2d4886f28e777"
ZONEMTA_COMMIT="0037bcd93c5147426c13a57794037f08840929ee" # zone-mta-template
WILDDUCK_COMMIT="94434cab438cea0aa958d139e3ab8799db18a2b4"
ZONEMTA_COMMIT="bf3ca53d99b51808105dc63c3b263c1ca8b32c48" # zone-mta-template
WEBMAIL_COMMIT="40ee1ef973de33de5bdf3e6b7e877d156d87436a"
WILDDUCK_ZONEMTA_COMMIT="c9c50892f805f6871532a0f5329c0bcbb02e2c43"
WILDDUCK_HARAKA_COMMIT="3af4bb6c1a879c1c06a1f205d71102ca6190b905"
WILDDUCK_ZONEMTA_COMMIT="698aef09e5fce87689b49715ebdd5ea9cd0c8cb8"
WILDDUCK_HARAKA_COMMIT="c0837403a3483c9a8dd30a758015255fb2c3c9ad"
HARAKA_VERSION="3.0.2"

echo -e "\n-- Executing ${ORANGE}${OURNAME}${NC} subscript --"

0 comments on commit 630b751

Please sign in to comment.