Skip to content
Open
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/BuildDockerPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
# Checkout code
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Get all history for version calculation
fetch-depth: 0
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
# Checkout code
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

# Setup QEMU for multi architecture builds
# https://github.com/marketplace/actions/docker-setup-qemu
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

# https://github.com/marketplace/actions/upload-a-build-artifact
- name: Upload version artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: versions
path: ${{ runner.temp }}/version.info
Expand All @@ -177,11 +177,11 @@ jobs:

# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

# https://github.com/marketplace/actions/download-a-build-artifact
- name: Download version artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: versions
path: ${{ runner.temp }}/versions
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:

# https://github.com/marketplace/actions/checkout
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v6

# Create GitHub release
# https://github.com/marketplace/actions/gh-release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CheckUpstreamRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
# Checkout code
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

# Run workflow
# https://cli.github.com/manual/gh_workflow_run
Expand Down