Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update versions in GitHub pipeline steps #324

Merged
merged 1 commit into from
Feb 6, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/ci-develop-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build & Deploy Snapshot
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get latest Docker image
run: docker pull pi4j/pi4j-builder:2.0
- name: Build entire Pi4J Project in Docker
Expand All @@ -25,7 +25,7 @@ jobs:
cp -r pi4j-distribution/target/*.deb staging
cp -r pi4j-distribution/target/*.zip staging
- name: Upload distribution files to staging
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pi4j-v2-dist
path: staging
Expand All @@ -38,7 +38,7 @@ jobs:
url: 'https://github.com/Pi4J/download'
steps:
- name: Download staged artifacts from build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: pi4j-v2-dist
- name: Display downloaded build artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build Snapshot
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get latest Docker image
run: docker pull pi4j/pi4j-builder:2.0
- name: Build entire Pi4J Project in Docker
Expand All @@ -25,7 +25,7 @@ jobs:
cp -r pi4j-distribution/target/*.deb staging
cp -r pi4j-distribution/target/*.zip staging
- name: Upload distribution files to staging
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pi4j-v2-dist
path: staging
6 changes: 3 additions & 3 deletions .github/workflows/ci-release-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Build & Deploy Tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get latest Docker image
run: docker pull pi4j/pi4j-builder:2.0
- name: Build entire Pi4J Project in Docker
Expand All @@ -26,7 +26,7 @@ jobs:
cp -r pi4j-distribution/target/*.deb staging
cp -r pi4j-distribution/target/*.zip staging
- name: Upload distribution files to staging
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pi4j-v2-dist
path: staging
Expand All @@ -39,7 +39,7 @@ jobs:
url: 'https://github.com/Pi4J/download'
steps:
- name: Download staged artifacts from build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: pi4j-v2-dist
- name: Display downloaded build artifacts
Expand Down