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

Pin and bump dependencies for better reproducibility #182

Merged
merged 4 commits into from
Feb 2, 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
4 changes: 2 additions & 2 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
pre:
# Verification to be done before the real check
name: Pre-check
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
should_skip: ${{ steps.skip_flag.outputs.should_skip }}
steps:
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Stop containers
run: docker compose -f docker-compose.yml -f docker-compose.e2e.yml --profile e2e down

- uses: sonarsource/sonarqube-scan-action@master
- uses: sonarsource/sonarqube-scan-action@v2
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
4 changes: 2 additions & 2 deletions client-e2e/images/Dockerfile.chrome
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM selenium/node-chrome:4.9.1-20230508
FROM selenium/node-chrome:4.11.0-20230801
RUN mkdir /home/seluser/downloads && chown 1200:1201 /home/seluser/downloads
CMD ["/opt/bin/entry_point.sh"]
CMD ["/opt/bin/entry_point.sh"]
2 changes: 1 addition & 1 deletion client-e2e/images/Dockerfile.chrome-arm64
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM seleniarm/node-chromium:latest
FROM seleniarm/node-chromium:4.11.0-20230801
RUN mkdir /home/seluser/downloads && chown 1200:1201 /home/seluser/downloads
CMD ["/opt/bin/entry_point.sh"]
4 changes: 2 additions & 2 deletions client-e2e/images/Dockerfile.edge
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM selenium/node-edge:4.9.1-20230508
FROM selenium/node-edge:4.11.0-20230801
RUN mkdir /home/seluser/downloads && chown 1200:1201 /home/seluser/downloads
CMD ["/opt/bin/entry_point.sh"]
CMD ["/opt/bin/entry_point.sh"]
4 changes: 2 additions & 2 deletions client-e2e/images/Dockerfile.firefox
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM selenium/node-firefox:4.9.1-20230508
FROM selenium/node-firefox:4.11.0-20230801
RUN mkdir /home/seluser/downloads && chown 1200:1201 /home/seluser/downloads
CMD ["/opt/bin/entry_point.sh"]
CMD ["/opt/bin/entry_point.sh"]
2 changes: 1 addition & 1 deletion client-e2e/images/Dockerfile.firefox-arm64
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM seleniarm/node-firefox:latest
FROM seleniarm/node-firefox:4.11.0-20230801
RUN mkdir /home/seluser/downloads && chown 1200:1201 /home/seluser/downloads
CMD ["/opt/bin/entry_point.sh"]
2 changes: 1 addition & 1 deletion docker-compose.e2e-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
build:
dockerfile: ./client-e2e/images/Dockerfile.firefox-arm64
selenium-hub:
image: seleniarm/hub:latest
image: seleniarm/hub:4.11.0-20230801
client-e2e:
depends_on:
chrome:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
version: "3.9"
services:
mailbox:
image: leastauthority/magic-wormhole-mailbox:latest
image: leastauthority/magic-wormhole-mailbox:22.11.1
ports:
- "4000:4000" # WebSocket
relay:
image: leastauthority/magic-wormhole-relay:latest
image: leastauthority/magic-wormhole-relay:22.11.1
ports:
- "4001:4001" # TCP
- "4002:4002" # WebSocket
Expand Down Expand Up @@ -113,7 +113,7 @@ services:
profiles:
- e2e
selenium-hub:
image: selenium/hub:4.9.1-20230508
image: selenium/hub:4.11.0-20230801
container_name: selenium-hub
ports:
- "4442:4442"
Expand Down
Loading