Skip to content

Commit

Permalink
Merge pull request #22 from lasp/feature/update-actions-versions
Browse files Browse the repository at this point in the history
Update all actions versions
  • Loading branch information
patkenneally authored Feb 19, 2024
2 parents 5a42225 + e3c5cd8 commit 33042f2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout Basilisk
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: AVSLab/basilisk
ref: ${{ env.BSK_VERSION }}
Expand Down Expand Up @@ -52,30 +52,30 @@ jobs:
sudo du /usr/ -hx -d 4 --threshold=1G | sort -hr | head
- name: Login to the Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ github.token }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# Build, scan, and push basilisk-jupyterlabs Docker artifacts.
- name: Extract metadata (tags, labels) for basilisk-jupyterlabs Docker image
id: metadata
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/lasp/basilisk-jupyterlabs
tags: type=raw, value=${{ env.BSK_VERSION }}

- name: Build basilisk-jupyterlabs Docker image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
file: basilisk-jupyterlabs.Containerfile
Expand All @@ -93,7 +93,7 @@ jobs:
timeout: 10m0s

- name: Push basilisk-jupyterlabs Docker image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
file: basilisk-jupyterlabs.Containerfile
Expand Down

0 comments on commit 33042f2

Please sign in to comment.