Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/buildDarkstarDocker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
steps:
# Checkout the actions for this repo_owner
- name: Checkout Actions
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
repository: ${{ github.repository_owner }}/.github
path: ./Actions_${{ github.sha }}
Expand All @@ -73,7 +73,7 @@ jobs:
# Fetch cached LFS files
- name: Cache LFS files
id: cache-lfs
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: |
docker_medley/filebrowser/filebrowser
Expand All @@ -88,7 +88,7 @@ jobs:

# Checkout latest commit
- name: Checkout Online code
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
lfs: ${{ steps.cache-lfs.outputs.cache-hit != 'true' }}

Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:

# Checkout the latest Notecards commit
- name: Checkout Notecards
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
repository: "${{ github.repository_owner }}/notecards"
path: "./docker_medley/notecards"
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:

# Login to ghcr.io
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -210,7 +210,7 @@ jobs:
# checked out and the release tars just downloaded.
# Push the result to Docker Hub
- name: Build Docker Image for Push to Docker Hub
uses: docker/build-push-action@v3
uses: docker/build-push-action@v7
with:
builder: ${{ steps.buildx.outputs.name }}
build-args: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/buildMedleyDocker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
steps:
# Checkout the actions for this repo_owner
- name: Checkout Actions
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ github.repository_owner }}/.github
path: ./Actions_${{ github.sha }}
Expand All @@ -56,7 +56,7 @@ jobs:
# Fetch cached LFS files
- name: Cache LFS files
id: cache-lfs
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
docker_medley/filebrowser/filebrowser
Expand All @@ -71,7 +71,7 @@ jobs:

# Checkout latest commit
- name: Checkout Online code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
lfs: ${{ steps.cache-lfs.outputs.cache-hit != 'true' }}

Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:

# Checkout the latest Notecards commit
- name: Checkout Notecards
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: "${{ github.repository_owner }}/notecards"
path: "./docker_medley/notecards"
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:

# Login to ghcr.io
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -176,7 +176,7 @@ jobs:
# checked out and the release tars just downloaded.
# Push the result to Docker Hub
- name: Build Docker Image for Push to Docker Hub
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
builder: ${{ steps.buildx.outputs.name }}
build-args: |
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/buildPortalDocker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ jobs:

# Checkout the actions for this repo_owner
- name: Checkout Actions
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ github.repository_owner }}/.github
path: ./Actions_${{ github.sha }}
- run: mv ./Actions_${{ github.sha }}/actions ../actions && rm -rf ./Actions_${{ github.sha }}

# Checkout latest commit to depth 1 for production
- name: Checkout Web-portal code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1

Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:

# Login to ghcr.io
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -143,7 +143,7 @@ jobs:

# Get novnc
- name: Checkout novnc code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: 'novnc/noVNC.git'
ref: 'v1.3.0'
Expand All @@ -152,7 +152,7 @@ jobs:
# Do the Production Docker Build using the Dockerfile_production
# Push the result to Docker Hub
- name: Build Docker Image for Push to Docker Hub
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
builder: ${{ steps.buildx.outputs.name }}
build-args: |
Expand All @@ -166,7 +166,7 @@ jobs:

# Recheckout latest commit with fetch_depth of 0 for development image
- name: Checkout Web-portal code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -177,7 +177,7 @@ jobs:

# Get novnc
- name: Checkout novnc code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: 'novnc/noVNC.git'
ref: 'v1.3.0'
Expand All @@ -186,7 +186,7 @@ jobs:
# Do the Development Docker Build using the Dockerfile_development
# Push the result to Docker Hub
- name: Build Docker Image for Push to Docker Hub
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
builder: ${{ steps.buildx.outputs.name }}
build-args: |
Expand Down
Loading