Skip to content

Commit

Permalink
Update actions/checkout to v4.1.1
Browse files Browse the repository at this point in the history
Since node16 that is used by action/checkout v3 has reached EOL, we upgrade the version to the latest 4.1.1.

Signed-off-by: Paul Gaiduk <paulg@zededa.com>
  • Loading branch information
europaul authored and uncleDecart committed Feb 9, 2024
1 parent f27b785 commit d698974
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/eden_emh_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt install -y golang jq expect
- name: Get eden
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Create ubuntu server on packet hosting
id: ubuntu
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eden_gcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
fs: ["zfs", "ext4"]
steps:
- name: get eden
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: setup go
uses: actions/setup-go@v3
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/eden_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: |
ip a
- name: get eden
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Set up QEMU
Expand All @@ -40,7 +40,7 @@ jobs:
run: |
ip a
- name: get eden
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Set up QEMU
Expand Down Expand Up @@ -80,9 +80,9 @@ jobs:
./eden config add setup --devmodel general
./eden --config setup setup
./eden --config setup clean
./eden config delete setup
# try download and build from repo
./eden config delete setup
# try download and build from repo
./eden config add setup
# use stable tag as eve tag and branch may differ
./eden config set setup --key eve.tag --value="8.6.0"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: needs.check-secrets.outputs.available == 'true'
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
arch: arm64
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Set up QEMU
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ${{ needs.determine-runner.outputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.1
with:
repository: "lf-edge/eden"
ref: ${{ inputs.eden_version }}
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ${{ needs.determine-runner.outputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.1
with:
repository: "lf-edge/eden"
ref: ${{ inputs.eden_version }}
Expand All @@ -96,7 +96,7 @@ jobs:
runs-on: ${{ needs.determine-runner.outputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.1
with:
repository: "lf-edge/eden"
ref: ${{ inputs.eden_version }}
Expand All @@ -117,7 +117,7 @@ jobs:
runs-on: ${{ needs.determine-runner.outputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.1
with:
repository: "lf-edge/eden"
ref: ${{ inputs.eden_version }}
Expand All @@ -142,7 +142,7 @@ jobs:
runs-on: ${{ needs.determine-runner.outputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.1
with:
repository: "lf-edge/eden"
ref: ${{ inputs.eden_version }}
Expand All @@ -163,7 +163,7 @@ jobs:
runs-on: ${{ needs.determine-runner.outputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.1
with:
repository: "lf-edge/eden"
ref: ${{ inputs.eden_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: get eden
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: setup go
uses: actions/setup-go@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yetus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
path: src
fetch-depth: 0
Expand Down

0 comments on commit d698974

Please sign in to comment.