Skip to content

Commit

Permalink
Update Actions versions
Browse files Browse the repository at this point in the history
Actions was complaining about some using deprecated node 12
  • Loading branch information
rffontenelle authored and bilelmoussaoui committed Dec 23, 2022
1 parent e62affe commit af550c9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 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-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,23 +85,23 @@ jobs:

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1.1.1
uses: docker/setup-buildx-action@v2.2.1
with:
driver-opts: network=host

- name: Cache Docker layers for the base image
uses: actions/cache@v2
uses: actions/cache@v3.2.0
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build & push the Fedora base image to local registry
uses: docker/build-push-action@v2.2.2
uses: docker/build-push-action@v3.2.0
with:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
Expand All @@ -112,7 +112,7 @@ jobs:
tags: localhost:5000/fedora-base:latest

- name: Login to Docker Hub
uses: docker/login-action@v1.8.0
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -126,7 +126,7 @@ jobs:
RUN --security=insecure flatpak install -y --noninteractive ${{matrix.runtime.remote}} ${{ matrix.runtime.packages }}
- name: Build & push the ${{ matrix.runtime.name }} image to Docker Hub
uses: docker/build-push-action@v2.2.2
uses: docker/build-push-action@v3.2.0
with:
allow: security.insecure
context: .
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/flatpak-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
matrix:
arch: [x86_64, aarch64]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install QEMU deps
if: ${{ matrix.arch != 'x86_64' }}
run: |
dnf -y install docker
- name: Set up QEMU
if: ${{ matrix.arch != 'x86_64' }}
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- uses: ./flatpak-builder
Expand All @@ -46,9 +46,9 @@ jobs:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --also=dev
Expand All @@ -60,9 +60,9 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: "16"
- run: yarn install --also=dev
Expand Down

0 comments on commit af550c9

Please sign in to comment.