Skip to content

Commit a020747

Browse files
committed
Update Github action dependencies
1 parent 21c4c4e commit a020747

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

apps/duckguessr/.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
environment: production
1212
steps:
1313
- name: Check out repository
14-
uses: actions/checkout@master
14+
uses: actions/checkout@v6
1515

1616
- name: Download .env file
1717
uses: nicklasfrahm/scp-action@main
@@ -25,17 +25,17 @@ jobs:
2525
target: .env.prod
2626

2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@v1
28+
uses: docker/setup-buildx-action@v4
2929

3030
- name: Login to GitHub Container Registry
31-
uses: docker/login-action@v1
31+
uses: docker/login-action@v4
3232
with:
3333
registry: ghcr.io
3434
username: bperel
3535
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
3636

3737
- name: Build and push web runtime
38-
uses: docker/build-push-action@v2
38+
uses: docker/build-push-action@v7
3939
with:
4040
context: .
4141
platforms: linux/x86_64
@@ -45,7 +45,7 @@ jobs:
4545
ghcr.io/bperel/duckguessr-web:latest
4646
4747
- name: Build and push socket runtime
48-
uses: docker/build-push-action@v2
48+
uses: docker/build-push-action@v7
4949
with:
5050
context: .
5151
platforms: linux/x86_64

0 commit comments

Comments
 (0)