Skip to content

Commit

Permalink
Update actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev committed Nov 15, 2023
1 parent d13125a commit 7f1d0fb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
[[ $VPN_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $CORE_VERSION =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]] || { echo "versions introduced in wrong format"; exit 1; }
- name: Checkout
uses: actions/checkout@v2.3.1
uses: actions/checkout@v4

# Edit the profile with the new versions introduced
- name: Set new versions
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
# ARTIFACTS ASSETS
- name: Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: test-artifact
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0

- name: Lint Code Base
uses: github/super-linter@v3.17.0
uses: super-linter/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: false
FILTER_REGEX_EXCLUDE: .github/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
[[ $VPN_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $CORE_VERSION =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]] || { echo "versions introduced in wrong format"; exit 1; }
- name: Checkout
uses: actions/checkout@v2.3.1
uses: actions/checkout@v4

# Edit the profile with the new versions introduced
- name: Set new versions
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
- name: Create Pull Request
if: steps.git_diff.outputs.HAS_CHANGED == 'true'
uses: peter-evans/create-pull-request@v3
uses: peter-evans/create-pull-request@v5
with:
add-paths: ".dappnode_profile"
commit-message: "update core packages versions"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.3.1
uses: actions/checkout@v4
- name: Setup Test Environment
run: |
sudo /bin/bash ./test/environment_setup.sh
Expand All @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.3.1
uses: actions/checkout@v4
- name: create iso
run: |
docker-compose build
Expand Down

0 comments on commit 7f1d0fb

Please sign in to comment.