Skip to content

Commit

Permalink
CI/CD: update pipeline runtime versions
Browse files Browse the repository at this point in the history
  • Loading branch information
stscoundrel committed Jun 24, 2024
1 parent 95f41ac commit 62e15ea
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/crosslinker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.17', '1.18', '1.19', '1.20']
go: ['1.20', '1.21', '1.22']
steps:
- uses: actions/checkout@v4
- name: Build with Go ${{ matrix.go }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crosslinker-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.17', '1.18', '1.19', '1.20']
go: ['1.22']
steps:
- uses: actions/checkout@v4
- name: Lint in Go ${{ matrix.go }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crosslinker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.17', '1.18', '1.19', '1.20']
go: ['1.22']
steps:
- uses: actions/checkout@v4
- name: Test in Go ${{ matrix.go }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-module-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [22.x]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-module-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [20.x]
node-version: [22.x]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-module-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn publish --non-interactive
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-module-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [20.x]
node-version: [22.x]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 62e15ea

Please sign in to comment.