Skip to content

Commit

Permalink
Merge pull request #11 from zowe/update-workflows
Browse files Browse the repository at this point in the history
Update workflows to use supported Node version
  • Loading branch information
awharn authored May 9, 2024
2 parents 702ee05 + fcda940 commit 75c9e5c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set Default Tags
run: |
Expand All @@ -46,31 +46,31 @@ jobs:
} >> "$GITHUB_ENV"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
if: ${{ inputs.qemu }}
with:
platforms: arm64

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Login to Zowe Artifactory
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: zowe-docker-snapshot.jfrog.io
username: ${{ secrets.ARTIFACTORY_USERNAME }}
password: ${{ secrets.ARTIFACTORY_PASSWORD }}

- name: Build & Push
id: build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
build-args: |
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ze-theia-slim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get Theia version
id: load-env
Expand Down

0 comments on commit 75c9e5c

Please sign in to comment.