Skip to content

Commit af550c9

Browse files
rffontenellebilelmoussaoui
authored andcommitted
Update Actions versions
Actions was complaining about some using deprecated node 12
1 parent e62affe commit af550c9

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
codespell:
1010
runs-on: ubuntu-20.04
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- uses: codespell-project/actions-codespell@master
1414
with:
1515
check_filenames: true

.github/workflows/docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,23 +85,23 @@ jobs:
8585

8686
steps:
8787
- name: Checkout
88-
uses: actions/checkout@v2.3.4
88+
uses: actions/checkout@v3.2.0
8989

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

9595
- name: Cache Docker layers for the base image
96-
uses: actions/cache@v2
96+
uses: actions/cache@v3.2.0
9797
with:
9898
path: /tmp/.buildx-cache
9999
key: ${{ runner.os }}-buildx-${{ github.sha }}
100100
restore-keys: |
101101
${{ runner.os }}-buildx-
102102
103103
- name: Build & push the Fedora base image to local registry
104-
uses: docker/build-push-action@v2.2.2
104+
uses: docker/build-push-action@v3.2.0
105105
with:
106106
cache-from: type=local,src=/tmp/.buildx-cache
107107
cache-to: type=local,dest=/tmp/.buildx-cache
@@ -112,7 +112,7 @@ jobs:
112112
tags: localhost:5000/fedora-base:latest
113113

114114
- name: Login to Docker Hub
115-
uses: docker/login-action@v1.8.0
115+
uses: docker/login-action@v2.1.0
116116
with:
117117
username: ${{ secrets.DOCKERHUB_USERNAME }}
118118
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -126,7 +126,7 @@ jobs:
126126
RUN --security=insecure flatpak install -y --noninteractive ${{matrix.runtime.remote}} ${{ matrix.runtime.packages }}
127127
128128
- name: Build & push the ${{ matrix.runtime.name }} image to Docker Hub
129-
uses: docker/build-push-action@v2.2.2
129+
uses: docker/build-push-action@v3.2.0
130130
with:
131131
allow: security.insecure
132132
context: .

.github/workflows/flatpak-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
matrix:
1717
arch: [x86_64, aarch64]
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: Install QEMU deps
2121
if: ${{ matrix.arch != 'x86_64' }}
2222
run: |
2323
dnf -y install docker
2424
- name: Set up QEMU
2525
if: ${{ matrix.arch != 'x86_64' }}
26-
uses: docker/setup-qemu-action@v1
26+
uses: docker/setup-qemu-action@v2
2727
with:
2828
platforms: arm64
2929
- uses: ./flatpak-builder
@@ -46,9 +46,9 @@ jobs:
4646
matrix:
4747
node-version: [14.x, 16.x]
4848
steps:
49-
- uses: actions/checkout@v2
49+
- uses: actions/checkout@v3
5050
- name: Use Node.js ${{ matrix.node-version }}
51-
uses: actions/setup-node@v1
51+
uses: actions/setup-node@v3
5252
with:
5353
node-version: ${{ matrix.node-version }}
5454
- run: yarn install --also=dev
@@ -60,9 +60,9 @@ jobs:
6060
name: Lint
6161
runs-on: ubuntu-latest
6262
steps:
63-
- uses: actions/checkout@v2
63+
- uses: actions/checkout@v3
6464
- name: Use Node.js 16
65-
uses: actions/setup-node@v1
65+
uses: actions/setup-node@v3
6666
with:
6767
node-version: "16"
6868
- run: yarn install --also=dev

0 commit comments

Comments
 (0)