Skip to content

Commit

Permalink
CI, README: bump actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
kbdharun authored and bilelmoussaoui committed Sep 4, 2023
1 parent add7abe commit c14f6d4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
codespell:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3.2.0
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.2.1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/flatpak-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- cache: no-cache
restore: cache-restored
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install QEMU deps
if: ${{ matrix.arch != 'x86_64' }}
run: |
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./flatpak-builder
with:
manifest-path: ./flatpak-builder/tests/test-project/org.example.MyApp.yaml
Expand All @@ -74,7 +74,7 @@ jobs:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./flatpak-builder
with:
bundle: org.example.MyApp.Devel-cache-hit.flatpak
Expand All @@ -89,7 +89,7 @@ jobs:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand All @@ -103,7 +103,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6.1
with:
bundle: palette.flatpak
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
# Don't fail the whole workflow if one architecture fails
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Docker is required by the docker/setup-qemu-action which enables emulation
- name: Install deps
if: ${{ matrix.arch != 'x86_64' }}
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6.1
name: "Build"
with:
Expand Down

0 comments on commit c14f6d4

Please sign in to comment.