Skip to content

Commit

Permalink
Merge branch 'main' into craft-providers-1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-cal authored Jan 19, 2024
2 parents d50e79c + 9fc449a commit ea47b7a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cla-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [pull_request]

jobs:
cla-check:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check if CLA signed
uses: canonical/has-signed-canonical-cla@v1
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- if: steps.decisions.outputs.PUBLISH == 'true'
name: Checkout Snapcraft
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Fetch all of history so Snapcraft can determine its own version from git.
fetch-depth: 0
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/spread-scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build snap
uses: snapcore/action-build@v1
id: snapcraft
- name: Upload snap artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: snap
path: ${{ steps.snapcraft.outputs.snap }}
Expand All @@ -38,12 +38,12 @@ jobs:
rm -rf "${{ github.workspace }}"
mkdir "${{ github.workspace }}"
- name: Checkout snapcraft
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Download snap artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: snap
path: tests
Expand All @@ -62,12 +62,12 @@ jobs:
rm -rf "${{ github.workspace }}"
mkdir "${{ github.workspace }}"
- name: Checkout snapcraft
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Download snap artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: snap
path: tests
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/spread.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout snapcraft
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -17,7 +17,7 @@ jobs:
uses: snapcore/action-build@v1

- name: Upload snapcraft snap
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: snap
path: ${{ steps.build-snapcraft.outputs.snap }}
Expand All @@ -43,13 +43,13 @@ jobs:

steps:
- name: Checkout snapcraft
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true

- name: Download snapcraft snap
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: snap
path: tests
Expand Down Expand Up @@ -93,14 +93,14 @@ jobs:
- if: steps.decisions.outputs.RUN == 'true'
name: Checkout snapcraft
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true

- if: steps.decisions.outputs.RUN == 'true'
name: Download snapcraft snap
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: snap
path: tests
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand Down Expand Up @@ -58,11 +58,11 @@ jobs:
tox_python: py310
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python version ${{ matrix.python_version }} on ${{ matrix.platform }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
Expand All @@ -88,7 +88,7 @@ jobs:
files: coverage*.xml
- name: Upload test results
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.platform }}
path: results/
2 changes: 1 addition & 1 deletion docs/.sphinx/pinned-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ docutils==0.19
furo==2022.9.29
idna==3.4
imagesize==1.4.1
Jinja2==3.1.2
Jinja2==3.1.3
livereload==2.6.3
MarkupSafe==2.1.3
packaging==21.3
Expand Down

0 comments on commit ea47b7a

Please sign in to comment.