Skip to content

Commit

Permalink
Upgrade actions versions to avoid deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
nutjob4life committed Nov 8, 2022
1 parent 028dae5 commit 65cc6a7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/delivery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ jobs:
steps:
-
name: 💳 Docker Hub Identification
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_TOKEN}}
-
name: 📚 Repository Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
-
name: 🐍 Python Wrangling
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.10'
-
Expand All @@ -56,13 +56,13 @@ jobs:
done
-
name: 🎰 QEMU Multiple Machine Emulation
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
-
name: 🚢 Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
-
name: 🧱 Image Construction and Publication — user ID 500
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
build-args: user_id=500
context: .
Expand All @@ -74,7 +74,7 @@ jobs:
${{secrets.DOCKERHUB_USERNAME}}/edrn-portal:latest-uid500
-
name: 🧱 Image Construction and Publication — user ID 26013
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
build-args: user_id=26013
context: .
Expand Down

0 comments on commit 65cc6a7

Please sign in to comment.