Skip to content

Commit

Permalink
fix(deps): update ubuntu from 20.04 to 22.04 (#180)
Browse files Browse the repository at this point in the history
fix(deps): update node from 16 to 18
  • Loading branch information
gofrolist authored Jan 14, 2023
1 parent 3bd8c34 commit 6f2d797
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:

jobs:
dependabot:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ permissions:
jobs:
publish:
name: Publish Release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.3.0
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
validate:
needs:
- publish
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Test run Molecule from DockerHub latest image
uses: docker://gofrolist/molecule:latest
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.3.0
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
molecule:
needs:
- build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Download artifact
uses: actions/download-artifact@v3.0.2
Expand All @@ -76,7 +76,7 @@ jobs:
snyk-docker:
needs:
- build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.3.0
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
snyk-python:
needs:
- build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.3.0
Expand All @@ -132,15 +132,15 @@ jobs:
needs:
- build
- molecule
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.3.0

- name: Setup Node.js
uses: actions/setup-node@v3.6.0
with:
node-version: '16'
node-version: '18'

- name: Release
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.3.0
Expand Down

0 comments on commit 6f2d797

Please sign in to comment.