1 Commits

Author SHA1 Message Date
dependabot[bot]
a20e164398 Bump selenium-webdriver from 4.41.0 to 4.43.0
Bumps [selenium-webdriver](https://github.com/SeleniumHQ/selenium) from 4.41.0 to 4.43.0.
- [Release notes](https://github.com/SeleniumHQ/selenium/releases)
- [Changelog](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)
- [Commits](https://github.com/SeleniumHQ/selenium/compare/selenium-4.41.0...selenium-4.43.0)

---
updated-dependencies:
- dependency-name: selenium-webdriver
  dependency-version: 4.43.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-11 08:24:08 +00:00
3 changed files with 1 additions and 83 deletions

View File

@@ -67,26 +67,6 @@ jobs:
echo "$KUBECONFIG_CONTENT" | base64 -d > ~/.kube/config
chmod 600 ~/.kube/config
- name: Run database migrations
run: |
echo "🗄️ Running database migrations..."
# Delete old migration job if it exists
kubectl delete job turbovault-migrate -n turbovault --ignore-not-found=true
# Update the migration job with the new image version
sed "s|image: ghcr.io/ryankazokas/turbovault-app:.*|image: ghcr.io/ryankazokas/turbovault-app:${{ steps.version.outputs.tag }}|" \
k8s/migrate-job.yaml | kubectl apply -f -
# Wait for migration to complete
echo "⏳ Waiting for migrations to complete..."
kubectl wait --for=condition=complete --timeout=5m job/turbovault-migrate -n turbovault
echo "✅ Migrations complete!"
echo ""
echo "📋 Migration logs:"
kubectl logs job/turbovault-migrate -n turbovault
- name: Deploy to Kubernetes
run: |
echo "🚀 Deploying version ${{ steps.version.outputs.tag }} to Kubernetes..."

View File

@@ -122,8 +122,6 @@ GEM
tzinfo
ffi (1.17.4-aarch64-linux-gnu)
ffi (1.17.4-aarch64-linux-musl)
ffi (1.17.4-arm-linux-gnu)
ffi (1.17.4-arm-linux-musl)
ffi (1.17.4-arm64-darwin)
ffi (1.17.4-x86_64-darwin)
ffi (1.17.4-x86_64-linux-gnu)
@@ -216,10 +214,6 @@ GEM
racc (~> 1.4)
nokogiri (1.19.2-aarch64-linux-musl)
racc (~> 1.4)
nokogiri (1.19.2-arm-linux-gnu)
racc (~> 1.4)
nokogiri (1.19.2-arm-linux-musl)
racc (~> 1.4)
nokogiri (1.19.2-arm64-darwin)
racc (~> 1.4)
nokogiri (1.19.2-x86_64-darwin)
@@ -346,7 +340,7 @@ GEM
logger
rubyzip (3.2.2)
securerandom (0.4.1)
selenium-webdriver (4.41.0)
selenium-webdriver (4.43.0)
base64 (~> 0.2)
logger (~> 1.4)
rexml (~> 3.2, >= 3.2.5)
@@ -456,8 +450,6 @@ PLATFORMS
aarch64-linux
aarch64-linux-gnu
aarch64-linux-musl
arm-linux-gnu
arm-linux-musl
arm64-darwin
x86_64-darwin
x86_64-linux

View File

@@ -1,54 +0,0 @@
class SeedPlatforms < ActiveRecord::Migration[8.1]
def up
platforms = [
# Nintendo
{ name: "Nintendo Entertainment System", abbreviation: "NES", manufacturer: "Nintendo" },
{ name: "Super Nintendo Entertainment System", abbreviation: "SNES", manufacturer: "Nintendo" },
{ name: "Nintendo 64", abbreviation: "N64", manufacturer: "Nintendo" },
{ name: "Nintendo GameCube", abbreviation: "GCN", manufacturer: "Nintendo" },
{ name: "Nintendo Wii", abbreviation: "Wii", manufacturer: "Nintendo" },
{ name: "Nintendo Wii U", abbreviation: "Wii U", manufacturer: "Nintendo" },
{ name: "Nintendo Switch", abbreviation: "Switch", manufacturer: "Nintendo" },
{ name: "Game Boy", abbreviation: "GB", manufacturer: "Nintendo" },
{ name: "Game Boy Color", abbreviation: "GBC", manufacturer: "Nintendo" },
{ name: "Game Boy Advance", abbreviation: "GBA", manufacturer: "Nintendo" },
{ name: "Nintendo DS", abbreviation: "NDS", manufacturer: "Nintendo" },
{ name: "Nintendo 3DS", abbreviation: "3DS", manufacturer: "Nintendo" },
# Sony
{ name: "PlayStation", abbreviation: "PS1", manufacturer: "Sony" },
{ name: "PlayStation 2", abbreviation: "PS2", manufacturer: "Sony" },
{ name: "PlayStation 3", abbreviation: "PS3", manufacturer: "Sony" },
{ name: "PlayStation 4", abbreviation: "PS4", manufacturer: "Sony" },
{ name: "PlayStation 5", abbreviation: "PS5", manufacturer: "Sony" },
{ name: "PlayStation Portable", abbreviation: "PSP", manufacturer: "Sony" },
{ name: "PlayStation Vita", abbreviation: "Vita", manufacturer: "Sony" },
# Microsoft
{ name: "Xbox", abbreviation: "Xbox", manufacturer: "Microsoft" },
{ name: "Xbox 360", abbreviation: "X360", manufacturer: "Microsoft" },
{ name: "Xbox One", abbreviation: "XB1", manufacturer: "Microsoft" },
{ name: "Xbox Series X/S", abbreviation: "XSX", manufacturer: "Microsoft" },
# Sega
{ name: "Sega Genesis", abbreviation: "Genesis", manufacturer: "Sega" },
{ name: "Sega Saturn", abbreviation: "Saturn", manufacturer: "Sega" },
{ name: "Sega Dreamcast", abbreviation: "DC", manufacturer: "Sega" },
{ name: "Sega Game Gear", abbreviation: "GG", manufacturer: "Sega" },
# PC
{ name: "PC", abbreviation: "PC", manufacturer: nil },
# Other
{ name: "Atari 2600", abbreviation: "2600", manufacturer: "Atari" }
]
platforms.each do |platform|
Platform.create!(platform)
end
end
def down
Platform.delete_all
end
end