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/actions/percy-snapshot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ runs:
using: composite
steps:
- name: Install Python
uses: actions/setup-python@v5.4.0
uses: actions/setup-python@v6.2.0
with:
python-version: 3.10.14

- name: Install NodeJS
uses: actions/setup-node@v4.2.0
uses: actions/setup-node@v6.3.0
with:
node-version: 20
node-version: 24

- name: Install dependencies
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/a11y.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
urls: ${{ steps.get-urls.outputs.urls }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Read links from test-links.yaml
id: get-urls
Expand All @@ -28,9 +28,9 @@ jobs:
needs: read-config
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: "yarn"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ceph-docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Setup LXD
uses: canonical/setup-lxd@main
Expand All @@ -32,7 +32,7 @@ jobs:
charmcraft pack -v --project-dir ./

- name: Upload charm
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ vars.CHARM_NAME }}-charm
path: ./charm/*.charm
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Setup LXD
uses: canonical/setup-lxd@main
Expand All @@ -53,7 +53,7 @@ jobs:
run: rockcraft pack -v

- name: Upload Rock
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ vars.CHARM_NAME }}-rock
path: ./*.rock
Expand All @@ -65,7 +65,7 @@ jobs:
image_url: ${{ steps.set_image_url.outputs.image_url }}
steps:
- name: Get Rock
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ vars.CHARM_NAME }}-rock

Expand All @@ -90,7 +90,7 @@ jobs:
sudo snap install vault --classic

- name: Download Charm Artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ vars.CHARM_NAME }}-charm

Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
sudo snap install vault --classic

- name: Download Charm Artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ vars.CHARM_NAME }}-charm

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/forms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24

- name: Install yarn
run: yarn install --immutable
Expand Down Expand Up @@ -53,7 +53,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.base_ref }}
Expand All @@ -62,7 +62,7 @@
run: yarn install --immutable

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.10'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kubernetes-docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openstack-charm-guide-docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/percy-baseline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout SCM
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: ./.github/actions/percy-snapshot
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/percy-fork-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:

steps:
- name: Checkout Trusted Action
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: trusted-logic
persist-credentials: false

- name: Checkout PR code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/percy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if: github.event.pull_request.head.repo.full_name == github.repository
steps:
- name: Checkout SCM
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: ./.github/actions/percy-snapshot
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/performance-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
matrix_data: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Read links from test-links.yaml
id: set-matrix
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const yaml = require('js-yaml');
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
echo "sanitized_name=$sanitized_name" >> $GITHUB_OUTPUT

- name: Upload result
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: perf-results-${{ steps.save-result.outputs.sanitized_name }}
path: result-${{ steps.save-result.outputs.sanitized_name }}.json
Expand All @@ -80,7 +80,7 @@ jobs:

steps:
- name: Download all results
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: perf-results-*
path: results/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/playwright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24

- name: Install dependencies
run: yarn install --immutable
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-with-task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
name: "Start Project"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- name: Setup Taskfile
uses: arduino/setup-task@v2
Expand Down Expand Up @@ -44,7 +44,7 @@
name: "Build Project"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- name: Setup Taskfile
uses: arduino/setup-task@v2
Expand All @@ -59,7 +59,7 @@
runs-on: ubuntu-latest
steps:
# TODO: Add codecov integration when this replaces the original PR.yaml workflow
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- name: Setup Taskfile
uses: arduino/setup-task@v2
Expand All @@ -77,7 +77,7 @@
name: "Lint Project"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

Check notice

Code scanning / zizmor

credential persistence through GitHub Actions artifacts Note

credential persistence through GitHub Actions artifacts

- name: Setup Taskfile
uses: arduino/setup-task@v2
Expand Down
Loading
Loading