Skip to content
Open
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
9 changes: 5 additions & 4 deletions .github/workflows/e2etests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
adapter_version: ${{ env.version }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
lekaf974 marked this conversation as resolved.
- name: Get version of adapter
run: |
if [ ${{ github.event_name }} == "release" ];then
Expand All @@ -34,7 +34,7 @@ jobs:
yq e -i '.services.cilium.version="${{ steps.glrt.outputs.release }}"' ./.github/install/deploy.yaml
cat ./.github/install/deploy.yaml
- name: Uploading file
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v8
with:
name: patternfile
path: ./.github/install/deploy.yaml
Expand Down Expand Up @@ -73,12 +73,13 @@ jobs:
if [ "${{github.event_name }}" == "release" ];then
echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
fi
- uses: actions/checkout@master
- uses: actions/checkout@v6
with:
repository: meshery/meshery
token: ${{ secrets.GH_ACCESS_TOKEN }}
ref: master
Comment thread
lekaf974 marked this conversation as resolved.
Comment thread
lekaf974 marked this conversation as resolved.
- name: DownloadJSON
uses: actions/download-artifact@v2
uses: actions/download-artifact@v8
with:
name: data.json
- name: echo results
Expand Down
Loading