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
6 changes: 3 additions & 3 deletions .github/workflows/issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Comment on the issue
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -25,7 +25,7 @@ jobs:
})

- name: Create an issue in code repository
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.TOKEN }}
script: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:
name: Validate data
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check out code repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: t0m3kz/vyos
token: ${{ secrets.TOKEN }}
path: vyos
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install vyos
Expand Down Expand Up @@ -43,14 +43,14 @@ jobs:
- name: Archive nornir artifacts
continue-on-error: true
if: ${{ failure() && steps.implement.conclusion == 'failure' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: execution_logs
path: |
*.log
- name: Checkout wiki documentation
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{github.repository}}.wiki
path: docs
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
comment-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check out code repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: t0m3kz/vyos
token: ${{ secrets.TOKEN }}
path: vyos
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install vyos
Expand All @@ -33,7 +33,7 @@ jobs:
echo "Running test deployment"
poetry run -P vyos sync -i ./inventory.yaml -v -m -t
- name: Read files content and create PR comment
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.TOKEN }}
script: |
Expand Down
Loading