Skip to content

fix(wifi): Using 5ghz-an for routeros_wifi_channel returns status code 400 #6

fix(wifi): Using 5ghz-an for routeros_wifi_channel returns status code 400

fix(wifi): Using 5ghz-an for routeros_wifi_channel returns status code 400 #6

Workflow file for this run

name: Go mod cache management
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches:
- 'main'
- 'devel'
paths:
- 'main.go'
- 'routeros/*.go'
jobs:
go-cache:
name: Go Cache
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: 1.23.4
id: go
- name: Get dependencies
shell: bash
run: go mod download all
- name: Cache Go Modules
uses: actions/[email protected]
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-